diff options
author | plegall <plg@piwigo.org> | 2009-01-06 21:31:04 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2009-01-06 21:31:04 +0000 |
commit | 680efc25ed280394bc398b6ab66b8dbccb8f11d5 (patch) | |
tree | 65e1114fe12de372b1582299c56b44ab659e0577 /admin | |
parent | 19d096853d16040892fefb9bbf1182b390e59fb1 (diff) |
Code administration: convert all text files to Unix file format (CR as eol
and not CRLF)
git-svn-id: http://piwigo.org/svn/branches/2.0@3054 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/template/goto/history.tpl | 74 |
1 files changed, 37 insertions, 37 deletions
diff --git a/admin/template/goto/history.tpl b/admin/template/goto/history.tpl index 6e0804a6c..3e4bcce6c 100644 --- a/admin/template/goto/history.tpl +++ b/admin/template/goto/history.tpl @@ -20,13 +20,13 @@ <li><label>{'search_date_from'|@translate}</label></li> <li> <select id="start_day" name="start_day"> - <option value="0">--</option>
- {section name=day start=1 loop=32}
- <option value="{$smarty.section.day.index}" {if $smarty.section.day.index==$START_DAY_SELECTED}selected="selected"{/if}>{$smarty.section.day.index}</option>
- {/section}
+ <option value="0">--</option> + {section name=day start=1 loop=32} + <option value="{$smarty.section.day.index}" {if $smarty.section.day.index==$START_DAY_SELECTED}selected="selected"{/if}>{$smarty.section.day.index}</option> + {/section} </select> <select id="start_month" name="start_month"> - {html_options options=$month_list selected=$START_MONTH_SELECTED}
+ {html_options options=$month_list selected=$START_MONTH_SELECTED} </select> <input id="start_year" name="start_year" value="{$START_YEAR}" type="text" size="4" maxlength="4" > <input id="start_linked_date" name="start_linked_date" type="hidden" size="10" disabled="disabled"/> @@ -36,13 +36,13 @@ <li><label>{'search_date_to'|@translate}</label></li> <li> <select id="end_day" name="end_day"> - <option value="0">--</option>
- {section name=day start=1 loop=32}
- <option value="{$smarty.section.day.index}" {if $smarty.section.day.index==$END_DAY_SELECTED}selected="selected"{/if}>{$smarty.section.day.index}</option>
- {/section}
+ <option value="0">--</option> + {section name=day start=1 loop=32} + <option value="{$smarty.section.day.index}" {if $smarty.section.day.index==$END_DAY_SELECTED}selected="selected"{/if}>{$smarty.section.day.index}</option> + {/section} </select> <select id="end_month" name="end_month"> - {html_options options=$month_list selected=$END_MONTH_SELECTED}
+ {html_options options=$month_list selected=$END_MONTH_SELECTED} </select> <input id="end_year" name="end_year" value="{$END_YEAR}" type="text" size="4" maxlength="4" > <input id="end_linked_date" name="end_linked_date" type="hidden" size="10" disabled="disabled"/> @@ -52,15 +52,15 @@ <label> {'Element type'|@translate} <select name="types[]" multiple="multiple" size="4"> - {html_options values=$type_option_values output=$type_option_values|translate selected=$type_option_selected}
+ {html_options values=$type_option_values output=$type_option_values|translate selected=$type_option_selected} </select> </label> <label> {'User'|@translate} <select name="user"> - <option value="-1">------------</option>
- {html_options options=$user_options selected=$user_options_selected}
+ <option value="-1">------------</option> + {html_options options=$user_options selected=$user_options_selected} </select> </label> @@ -73,18 +73,18 @@ {'File name'|@translate} <input name="filename" value="{$FILENAME}" type="text"> </label> -
- <label>
- {'Thumbnails'|@translate}
- <select name="display_thumbnail">
- {html_options values=$display_thumbnail_values output=$display_thumbnail_values|translate selected=$display_thumbnail_selected}
- </select>
- </label>
+ + <label> + {'Thumbnails'|@translate} + <select name="display_thumbnail"> + {html_options values=$display_thumbnail_values output=$display_thumbnail_values|translate selected=$display_thumbnail_selected} + </select> + </label> <input class="submit" type="submit" name="submit" value="{'Submit'|@translate}" /> </fieldset> </form> -
+ {if isset($search_summary)} <fieldset> <legend>{'Summary'|@translate}</legend> @@ -102,13 +102,13 @@ </fieldset> {/if} -
-{if !empty($NAV_BAR)}
-<div class="navigationBar">
- {$NAV_BAR}
-</div>
-{/if}
-
+ +{if !empty($NAV_BAR)} +<div class="navigationBar"> + {$NAV_BAR} +</div> +{/if} + <table class="table2" id="detailedStats"> <tr class="throw"> @@ -123,7 +123,7 @@ <th>{'tags'|@translate}</th> </tr> {if !empty($search_results) } -{foreach from=$search_results item=detail name=res_loop}
+{foreach from=$search_results item=detail name=res_loop} <tr class="{if $smarty.foreach.res_loop.index is odd}row1{else}row2{/if}"> <td class="hour">{$detail.DATE}</td> <td class="hour">{$detail.TIME}</td> @@ -135,13 +135,13 @@ <td>{$detail.CATEGORY}</td> <td>{$detail.TAGS}</td> </tr> -{/foreach}
+{/foreach} {/if} </table> -
-
-{if !empty($NAV_BAR)}
-<div class="navigationBar">
- {$NAV_BAR}
-</div>
-{/if}
+ + +{if !empty($NAV_BAR)} +<div class="navigationBar"> + {$NAV_BAR} +</div> +{/if} |