source: branches/2.0/admin/template/goto/cat_move.tpl @ 4894

Last change on this file since 4894 was 2719, checked in by rub, 16 years ago

jQuery Datepicker:
Readd resize for list of categories
Use include for double select list

Merge trunk 2717:2718 into branch 2.0

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 965 bytes
Line 
1{* $Id: cat_move.tpl 2719 2008-10-11 20:23:30Z rub $ *}
2
3{include file='include/resize.inc.tpl'}
4
5<div class="titrePage">
6  <h2>{'Move categories'|@translate}</h2>
7</div>
8
9<form method="post" action="{$F_ACTION}" class="filter" id="catMove">
10  <fieldset>
11    <legend>{'Virtual categories movement'|@translate}</legend>
12
13    <label>
14      {'Virtual categories to move'|@translate}
15
16      <select class="categoryList" name="selection[]" multiple="multiple">
17        {html_options options=$category_to_move_options}
18      </select>
19    </label>
20
21    <label>
22      {'New parent category'|@translate}
23
24      <select class="categoryDropDown" name="parent">
25        <option value="0">------------</option>
26        {html_options options=$category_parent_options}
27      </select>
28    </label>
29
30  </fieldset>
31
32  <p>
33    <input class="submit" type="submit" name="submit" value="{'Submit'|@translate}" {$TAG_INPUT_ENABLED}>
34    <input class="submit" type="reset" name="reset" value="{'Reset'|@translate}">
35  </p>
36
37</form>
Note: See TracBrowser for help on using the repository browser.