source: branches/2.5/admin/themes/default/template/cat_move.tpl @ 24975

Last change on this file since 24975 was 13282, checked in by plg, 12 years ago

feature 2581: new design on albums list management.

icons removed, replaced by text links visible on :hover

better ergonomy for automatic order: the "save manual order" submit button
only appears when a change is detected in the album ordering. The "automatic
sort order" becomes a dedicated fieldset, hidden by default, displayed "on
user demand".

new virtual album form displayed only "on user demand"

cat_list, cat_move and permalinks are 3 tabs for the "Albums > Manage" link
in the menubar.

permalinks admin page slightly redesign: fieldsets instead of centered h3,
"on user demand" form to add/modify permalinks.

  • Property svn:eol-style set to LF
File size: 807 bytes
Line 
1<div class="titrePage">
2  <h2>{'Move albums'|@translate}</h2>
3</div>
4
5<form method="post" action="{$F_ACTION}" class="filter" id="catMove">
6  <fieldset>
7    <legend>{'Move albums'|@translate}</legend>
8
9    <label>
10      {'Virtual albums to move'|@translate}
11
12      <select class="categoryList" name="selection[]" multiple="multiple">
13        {html_options options=$category_to_move_options}
14      </select>
15    </label>
16
17    <label>
18      {'New parent album'|@translate}
19
20      <select class="categoryDropDown" name="parent">
21        <option value="0">------------</option>
22        {html_options options=$category_parent_options}
23      </select>
24    </label>
25
26  </fieldset>
27
28  <p style="text-align:left;">
29    <input class="submit" type="submit" name="submit" value="{'Submit'|@translate}">
30  </p>
31
32</form>
Note: See TracBrowser for help on using the repository browser.