+ <td>[% IF client.is_default %][% LxERP.t8("Yes") %][%- ELSE %][% LxERP.t8("No") %][%- END %]</td>
+ </tr>
+[%- END %]
+ </table>
+[%- END %]
+ </div>
+
+ <div id="group_list">
+[%- IF !SELF.all_groups.size %]
+ <p>
+ [% LxERP.t8("No groups have been created yet.") %]
+ [% LxERP.t8("In order to use kivitendo you have to create at least a client, a user and a group.") %]
+ </p>
+
+[%- ELSE %]
+ <table width="100%">
+ <tr class="listheading">
+ <th>[% LxERP.t8('Name') %]</th>
+ <th>[% LxERP.t8('Description') %]</th>
+ </tr>
+
+[%- FOREACH group = SELF.all_groups %]
+ <tr class="listrow">
+ <td>[% L.link(SELF.url_for(action="edit_group", id=group.id), HTML.escape(group.name)) %]</td>
+ <td>[% HTML.escape(group.description) %]</td>