Revision a2b654b7
Von Kivitendo Admin vor mehr als 9 Jahren hinzugefügt
SL/Controller/Business.pm | ||
---|---|---|
my ($self) = @_;
|
||
|
||
$self->render('business/list',
|
||
title => $::locale->text('Businesses'),
|
||
BUSINESSS => SL::DB::Manager::Business->get_all_sorted);
|
||
title => $::locale->text('Businesses'),
|
||
BUSINESSES => SL::DB::Manager::Business->get_all_sorted);
|
||
}
|
||
|
||
sub action_new {
|
templates/webpages/business/list.html | ||
---|---|---|
[%- INCLUDE 'common/flash.html' %]
|
||
|
||
<form method="post" action="controller.pl">
|
||
[% IF !BUSINESSS.size %]
|
||
[% IF !BUSINESSES.size %]
|
||
<p>
|
||
[%- LxERP.t8('No business has been created yet.') %]
|
||
</p>
|
||
... | ... | |
</thead>
|
||
|
||
<tbody>
|
||
[%- FOREACH business = BUSINESSS %]
|
||
[%- FOREACH business = BUSINESSES %]
|
||
<tr class="listrow[% loop.count % 2 %]" id="business_id_[% business.id %]">
|
||
<td>
|
||
<a href="[% SELF.url_for(action => 'edit', id => business.id) %]">
|
Auch abrufbar als: Unified diff
Typo: BUSINESSES statt BUSINESSS