diff options
author | mistic100 <mistic@piwigo.org> | 2011-07-01 13:38:43 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2011-07-01 13:38:43 +0000 |
commit | 5c545444cb52b95a4062e69d012c1f5203672532 (patch) | |
tree | a21245b4641d9328a03d2de2388d5db54d212468 /admin/themes/default/template | |
parent | 9c0cfb008446eaa0f3fc3cffc71e5bebe5d02710 (diff) |
feature:2317 move order config to Admin->Config->Options
each drop-down menu is on a new line
git-svn-id: http://piwigo.org/svn/trunk@11588 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default/template')
-rw-r--r-- | admin/themes/default/template/configuration.tpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/admin/themes/default/template/configuration.tpl b/admin/themes/default/template/configuration.tpl index d2fb8910a..fc5f42b26 100644 --- a/admin/themes/default/template/configuration.tpl +++ b/admin/themes/default/template/configuration.tpl @@ -96,25 +96,25 @@ </span> </li> - <li> + <li style="margin-top:20px;"> <span class="property"> {'Default photos order'|@translate} {foreach from=$main.order_by item=order} - <span class="filter {if $ORDER_BY_IS_CUSTOM}transparent{/if}"> - <a class="removeFilter" title="{'remove this filter'|@translate}"><span>[x]</span></a> + <span class="filter {if $ORDER_BY_IS_CUSTOM}transparent{/if}"> <select name="order_by_field[]" {if $ORDER_BY_IS_CUSTOM}disabled{/if}> {html_options options=$main.order_field_options selected=$order.FIELD } </select> <select name="order_by_direction[]" {if $ORDER_BY_IS_CUSTOM}disabled{/if}> {html_options options=$main.order_direction_options selected=$order.DIRECTION } </select> + <a class="removeFilter">{'delete'|@translate}</a> </span> {/foreach} {if !$ORDER_BY_IS_CUSTOM} - <a class="addFilter" title="{'Add a filter'|@translate}"><span>[+]</span></a> + <a class="addFilter">{'Add a criteria'|@translate}</a> {else} <span class="order_by_is_custom">{'You can\'t define a default photo order because you have a custom setting in your local configuration.'|@translate}</span> {/if} |