Changeset 2294
- Timestamp:
- Mar 31, 2008, 7:42:14 AM (17 years ago)
- Location:
- trunk/template/yoga
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/template/yoga/admin/element_set_global.tpl
r2249 r2294 123 123 <select onchange="document.getElementById('date_creation_action_set').checked = true;" name="date_creation_day"> 124 124 <option value="0">--</option> 125 {section name=day start=1 loop=3 1}125 {section name=day start=1 loop=32} 126 126 <option value="{$smarty.section.day.index}" {if $smarty.section.day.index==$DATE_CREATION_DAY}selected="selected"{/if}>{$smarty.section.day.index}</option> 127 127 {/section} -
trunk/template/yoga/admin/element_set_unit.tpl
r2249 r2294 54 54 <select onmousedown="document.getElementById('date_creation_action_set-{$element.ID}').checked = true;" name="date_creation_day-{$element.ID}"> 55 55 <option value="0">--</option> 56 {section name=day start=1 loop=3 1}56 {section name=day start=1 loop=32} 57 57 <option value="{$smarty.section.day.index}" {if $smarty.section.day.index==$element.DATE_CREATION_DAY}selected="selected"{/if}>{$smarty.section.day.index}</option> 58 58 {/section} -
trunk/template/yoga/admin/history.tpl
r2272 r2294 23 23 <li> 24 24 <select name="start_day"> 25 26 {section name=day start=1 loop=3 1}27 25 <option value="0">--</option> 26 {section name=day start=1 loop=32} 27 <option value="{$smarty.section.day.index}" {if $smarty.section.day.index==$START_DAY_SELECTED}selected="selected"{/if}>{$smarty.section.day.index}</option> 28 28 {/section} 29 29 </select> 30 30 <select name="start_month"> 31 31 {html_options options=$month_list selected=$START_MONTH_SELECTED} 32 32 </select> 33 33 <input name="start_year" value="{$START_YEAR}" type="text" size="4" maxlength="4" > … … 38 38 <li> 39 39 <select name="end_day"> 40 41 {section name=day start=1 loop=3 1}42 40 <option value="0">--</option> 41 {section name=day start=1 loop=32} 42 <option value="{$smarty.section.day.index}" {if $smarty.section.day.index==$END_DAY_SELECTED}selected="selected"{/if}>{$smarty.section.day.index}</option> 43 43 {/section} 44 44 </select> 45 45 <select name="end_month"> 46 46 {html_options options=$month_list selected=$END_MONTH_SELECTED} 47 47 </select> 48 48 <input name="end_year" value="{$END_YEAR}" type="text" size="4" maxlength="4" > … … 53 53 {'Element type'|@translate} 54 54 <select name="types[]" multiple="multiple" size="4"> 55 55 {html_options values=$type_option_values output=$type_option_values|translate selected=$type_option_selected} 56 56 </select> 57 57 </label> … … 60 60 {'User'|@translate} 61 61 <select name="user"> 62 63 62 <option value="-1">------------</option> 63 {html_options options=$user_options selected=$user_options_selected} 64 64 </select> 65 65 </label> … … 83 83 {'Thumbnails'|@translate} 84 84 <select name="display_thumbnail"> 85 85 {html_options values=$display_thumbnail_values output=$display_thumbnail_values|translate selected=$display_thumbnail_selected} 86 86 </select> 87 87 </li> … … 110 110 {if !empty($NAV_BAR)} 111 111 <div class="navigationBar"> 112 112 {$NAV_BAR} 113 113 </div> 114 114 {/if} … … 117 117 <table class="table2" id="detailedStats"> 118 118 <tr class="throw"> 119 120 121 122 123 124 125 126 127 119 <th>{'Date'|@translate}</th> 120 <th>{'time'|@translate}</th> 121 <th>{'user'|@translate}</th> 122 <th>{'IP'|@translate}</th> 123 <th>{'image'|@translate}</th> 124 <th>{'Element type'|@translate}</th> 125 <th>{'section'|@translate}</th> 126 <th>{'category'|@translate}</th> 127 <th>{'tags'|@translate}</th> 128 128 </tr> 129 129 {if !empty($search_results) } 130 130 {foreach from=$search_results item=detail name=res_loop} 131 131 <tr class="{if $smarty.foreach.res_loop.index is odd}row1{else}row2{/if}"> 132 133 134 135 136 137 138 139 140 132 <td class="hour">{$detail.DATE}</td> 133 <td class="hour">{$detail.TIME}</td> 134 <td>{$detail.USER}</td> 135 <td>{$detail.IP}</td> 136 <td>{$detail.IMAGE}</td> 137 <td>{$detail.TYPE}</td> 138 <td>{$detail.SECTION}</td> 139 <td>{$detail.CATEGORY}</td> 140 <td>{$detail.TAGS}</td> 141 141 </tr> 142 142 {/foreach} … … 147 147 {if !empty($NAV_BAR)} 148 148 <div class="navigationBar"> 149 149 {$NAV_BAR} 150 150 </div> 151 151 {/if} -
trunk/template/yoga/admin/picture_modify.tpl
r2227 r2294 89 89 <select onmousedown="document.getElementById('date_creation_action_set').checked = true;" name="date_creation_day"> 90 90 <option value="0">--</option> 91 {section name=day start=1 loop=3 1}91 {section name=day start=1 loop=32} 92 92 <option value="{$smarty.section.day.index}" {if $smarty.section.day.index==$DATE_CREATION_DAY_VALUE}selected="selected"{/if}>{$smarty.section.day.index}</option> 93 93 {/section} -
trunk/template/yoga/search.tpl
r2286 r2294 64 64 <select name="start_day"> 65 65 <option value="0">--</option> 66 {section name=day start=1 loop=3 1}66 {section name=day start=1 loop=32} 67 67 <option value="{$smarty.section.day.index}" {if $smarty.section.day.index==$START_DAY_SELECTED}selected="selected"{/if}>{$smarty.section.day.index}</option> 68 68 {/section} … … 82 82 <select name="end_day"> 83 83 <option value="0">--</option> 84 {section name=day start=1 loop=3 1}84 {section name=day start=1 loop=32} 85 85 <option value="{$smarty.section.day.index}" {if $smarty.section.day.index==$END_DAY_SELECTED}selected="selected"{/if}>{$smarty.section.day.index}</option> 86 86 {/section}
Note: See TracChangeset
for help on using the changeset viewer.