source: branches/2.0/admin/template/goto/extend_for_templates.tpl @ 2864

Last change on this file since 2864 was 2531, checked in by vdigital, 16 years ago

roma tpl were missing.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1{* $Id: extend_for_templates.tpl 2531 2008-09-14 12:25:34Z vdigital $ *}
2<div class="titrePage"><h2>{'extend_for_templates'|@translate}</h2>
3</div>
4{if isset($extents)}
5<h4>{'Replacement of original templates'|@translate}</h4>
6<form method="post" name="extend_for_templates" id="extend_for_templates" action="">
7  <table class="table2">
8    <tr class="throw">
9      <th>{'Replacers'|@translate}</th>
10      <th>{'Original templates'|@translate}</th>
11      <th>{'Optional URL keyword'|@translate}</th>
12    </tr>
13    {foreach from=$extents item=tpl name=extent_loop}
14    <tr class="{if $smarty.foreach.extent_loop.index is odd}row1{else}row2{/if}">
15      <td>
16        <input type="hidden" name=reptpl[] value="{$tpl.replacer}" />
17        {$tpl.replacer}
18      </td>
19      <td>
20        {html_options name=original[] output=$tpl.original_tpl values=$tpl.original_tpl selected=$tpl.selected_tpl}
21      </td>
22      <td>
23        {html_options name=url[] output=$tpl.url_parameter values=$tpl.url_parameter selected=$tpl.selected_url}
24      </td>
25    </tr>
26    {/foreach}
27  </table>
28  {if !is_adviser()}
29  <p>
30    <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit" />
31  </p>
32  {/if}
33</form>
34{/if}
Note: See TracBrowser for help on using the repository browser.