Ignore:
Timestamp:
Feb 28, 2008, 3:41:48 AM (16 years ago)
Author:
rvelices
Message:
  • migrate many templates to smarty
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/template/yoga/admin/cat_move.tpl

    r2222 r2223  
    1 <!-- DEV TAG: not smarty migrated -->
    2 <!-- $Id$ -->
     1{* $Id$ *}
     2
    33<div class="titrePage">
    44  <ul class="categoryActions">
    5     <li><a href="{U_HELP}" onclick="popuphelp(this.href); return false;" title="{lang:Help}"><img src="{themeconf:icon_dir}/help.png" class="button" alt="(?)"></a></li>
     5    <li><a href="{$U_HELP}" onclick="popuphelp(this.href); return false;" title="{'Help'|@translate}"><img src="{$themeconf.icon_dir}/help.png" class="button" alt="(?)"></a></li>
    66  </ul>
    7   <h2>{lang:Move categories}</h2>
     7  <h2>{'Move categories'|@translate}</h2>
    88</div>
    99
    10 <form method="post" action="{F_ACTION}" class="filter" id="catMove">
     10<form method="post" action="{$F_ACTION}" class="filter" id="catMove">
    1111  <fieldset>
    12     <legend>{lang:Virtual categories movement}</legend>
     12    <legend>{'Virtual categories movement'|@translate}</legend>
    1313
    1414    <label>
    15       {lang:Virtual categories to move}
     15      {'Virtual categories to move'|@translate}
    1616
    1717      <select class="categoryList" name="selection[]" multiple="multiple">
    18         <!-- BEGIN category_option_selection -->
    19         <option {category_option_selection.SELECTED} value="{category_option_selection.VALUE}">{category_option_selection.OPTION}</option>
    20         <!-- END category_option_selection -->
     18        {html_options options=$category_to_move_options}
    2119      </select>
    2220    </label>
    2321
    2422    <label>
    25       {lang:New parent category}
     23      {'New parent category'|@translate}
    2624
    2725      <select class="categoryDropDown" name="parent">
    28         <!-- BEGIN category_option_parent -->
    29         <option {category_option_parent.SELECTED} value="{category_option_parent.VALUE}">{category_option_parent.OPTION}</option>
    30         <!-- END category_option_parent -->
     26        <option value="0">------------</option>
     27        {html_options options=$category_parent_options}
    3128      </select>
    3229    </label>
     
    3532
    3633  <p>
    37     <input class="submit" type="submit" name="submit" value="{lang:Submit}" {TAG_INPUT_ENABLED}>
    38     <input class="submit" type="reset" name="reset" value="{lang:Reset}">
     34    <input class="submit" type="submit" name="submit" value="{'Submit'|@translate}" {$TAG_INPUT_ENABLED}>
     35    <input class="submit" type="reset" name="reset" value="{'Reset'|@translate}">
    3936  </p>
    4037
Note: See TracChangeset for help on using the changeset viewer.