1 [% USE HTML %][% USE L %][% USE LxERP %]
 
   3 <h1>[% FORM.title %]</h1>
 
   5 [%- INCLUDE 'common/flash.html' %]
 
   7 [% IF !SELF.queries.size %]
 
   9   [%- LxERP.t8("You do not have access to any custom data export.") %]
 
  15    <tr class="listheading">
 
  16     <th>[% LxERP.t8("Name") %]</th>
 
  17     <th>[% LxERP.t8("Description") %]</th>
 
  22    [%- FOREACH query = SELF.queries %]
 
  24      <td>[% L.link(SELF.url_for(action="export", id=query.id), query.name) %]</td>
 
  25      <td>[% IF query.description %][% L.link(SELF.url_for(action="export", id=query.id), query.description) %][% END %]</td>