1 [%- USE LxERP -%][%- USE HTML -%][%- USE L -%]
 
   2 [%- BLOCK text_blocks %]
 
   7        [%- FOREACH block = blocks %]
 
   8         <li>[%- HTML.escape(block.title) %]</li>
 
  15 [%- IF !TEMPLATES.size %]
 
  16 <p>[%- LxERP.t8("No requirement spec templates have been created yet.") %]</p>
 
  21  <tr class="listheading">
 
  22   <th>[%- LxERP.t8("Detail view") %]</th>
 
  23   <th>[%- LxERP.t8("Paste template") %]</th>
 
  24   <th>[%- LxERP.t8("Title") %]</th>
 
  25   <th>[%- LxERP.t8("Type") %]</th>
 
  26   <th>[%- LxERP.t8("Last modification") %]</th>
 
  29 [%- FOREACH template = TEMPLATES %]
 
  30  <tr class="listrow[% loop.count % 2 %]">
 
  32    <a href="#" onclick="$('#select-template-details-row-[% template.id %]').toggle(); $(this).find('span').toggle();">
 
  34     <span style="display: none;">[-]</span>
 
  37   <td><a href="#" onclick="kivi.requirement_spec.paste_selected_template([% template.id %]);">[%- LxERP.t8("Paste template") %]</a></td>
 
  38   <td>[%- HTML.escape(template.title) %]</td>
 
  39   <td>[%- HTML.escape(template.type.description) %]</td>
 
  40   <td>[% template.mtime ? template.mtime.to_kivitendo(precision='minute') : template.itime.to_kivitendo(precision='minute') %]</td>
 
  43  <tr class="listrow[% loop.count % 2 %]" style="display: none;" id="select-template-details-row-[% template.id %]">
 
  44   [% SET front    = template.text_blocks_sorted(output_position=0) %]
 
  45   [% SET sections = template.sections_sorted %]
 
  46   [% SET back     = template.text_blocks_sorted(output_position=1) %]
 
  48    [%- LxERP.t8("What this template contains") %]:<br>
 
  50     [% PROCESS text_blocks blocks=front title=LxERP.t8("#1 text block(s) front", front.size) %]
 
  52     [%- IF sections.size %]
 
  53     <li>[%- LxERP.t8("#1 section(s)", sections.size) %]:
 
  55       [%- FOREACH section = sections %]
 
  56        <li>[%- HTML.escape(section.fb_number) %]: [%- HTML.escape(section.title) %]</li>
 
  62     [% PROCESS text_blocks blocks=back  title=LxERP.t8("#1 text block(s) back",  back.size)  %]
 
  71 <p><a href="#" onclick="$('#jqueryui_popup_dialog').dialog('close');">[%- LxERP.t8("Abort") %]</a></p>