diff options
author | rvelices <rv-github@modusoptimus.com> | 2008-03-20 00:35:36 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2008-03-20 00:35:36 +0000 |
commit | f12f0026fcdf791fbd2300cd23c1f14d0a547e3a (patch) | |
tree | 0011dc333f69b062b338d33e488299fda6cbd7d4 /template/yoga/admin | |
parent | cab98df7768729895771aa072ccc35bc8774e6cb (diff) |
- admin/notification_by_mail goes smarty - THE LAST ONE :-) :-)
- get rid of user_list warnings
- some code reorganisation in template class + explode modifier
- minor template and language changes in search.tpl and cat_modify.tpl
git-svn-id: http://piwigo.org/svn/trunk@2286 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/admin')
-rw-r--r-- | template/yoga/admin/cat_modify.tpl | 20 | ||||
-rw-r--r-- | template/yoga/admin/notification_by_mail.tpl | 121 | ||||
-rw-r--r-- | template/yoga/admin/user_list.tpl | 60 |
3 files changed, 101 insertions, 100 deletions
diff --git a/template/yoga/admin/cat_modify.tpl b/template/yoga/admin/cat_modify.tpl index dc9c98dc3..88e07e329 100644 --- a/template/yoga/admin/cat_modify.tpl +++ b/template/yoga/admin/cat_modify.tpl @@ -1,7 +1,7 @@ {* $Id$ *} <div class="titrePage"> <ul class="categoryActions"> - <li><a href="{$U_HELP}" onclick="popuphelp(this.href); return false;" title="{'Help'|@translate}"><img src="{$themeconf.icon_dir}/help.png" class="button" alt="(?)"></a></li> + <li><a href="{$U_HELP}" onclick="popuphelp(this.href); return false;" title="{'Help'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/help.png" class="button" alt="(?)"></a></li> </ul> <h2>{'title_edit_cat'|@translate}</h2> </div> @@ -11,14 +11,14 @@ <ul class="categoryActions"> <li><a href="{$U_JUMPTO}" title="{'jump to category'|@translate}"><img src="{$themeconf.icon_dir}/category_jump-to.png" class="button" alt="{'jump to category'|@translate}" /></a></li> {if isset($U_MANAGE_ELEMENTS) } - <li><a href="{$U_MANAGE_ELEMENTS}" title="{'manage category elements'|@translate}"><img src="{$themeconf.icon_dir}/category_elements.png" class="button" alt="{'elements'|@translate}" /></a></li> + <li><a href="{$U_MANAGE_ELEMENTS}" title="{'manage category elements'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/category_elements.png" class="button" alt="{'elements'|@translate}" /></a></li> {/if} - <li><a href="{$U_CHILDREN}" title="{'manage sub-categories'|@translate}"><img src="{$themeconf.icon_dir}/category_children.png" class="button" alt="{'sub-categories'|@translate}" /></a></li> + <li><a href="{$U_CHILDREN}" title="{'manage sub-categories'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/category_children.png" class="button" alt="{'sub-categories'|@translate}" /></a></li> {if isset($U_MANAGE_PERMISSIONS) } - <li><a href="{$U_MANAGE_PERMISSIONS}" title="{'edit category permissions'|@translate}" ><img src="{$themeconf.icon_dir}/category_permissions.png" class="button" alt="{'permissions'|@translate}" /></a></li> + <li><a href="{$U_MANAGE_PERMISSIONS}" title="{'edit category permissions'|@translate}" ><img src="{$ROOT_URL}{$themeconf.icon_dir}/category_permissions.png" class="button" alt="{'permissions'|@translate}" /></a></li> {/if} {if isset($U_DELETE) } - <li><a href="{$U_DELETE}" title="{'delete category'|@translate}" onclick="return confirm('{'Are you sure?'|@translate|@escape:javascript}');"><img src="{$themeconf.icon_dir}/category_delete.png" class="button" alt="{'delete'|@translate}" /></a></li> + <li><a href="{$U_DELETE}" title="{'delete category'|@translate}" onclick="return confirm('{'Are you sure?'|@translate|@escape:'javascript'}');"><img src="{$ROOT_URL}{$themeconf.icon_dir}/category_delete.png" class="button" alt="{'delete'|@translate}" /></a></li> {/if} </ul> @@ -73,20 +73,20 @@ <tr> <td><strong>{'lock'|@translate}</strong> <td> - {html_radios name='visible' values=$false_true output=$no_yes|translate selected=$CAT_VISIBLE} + {html_radios name='visible' values='false,true'|@explode output='No,Yes'|@explode|translate selected=$CAT_VISIBLE} </td> </tr> <tr> <td><strong>{'comments'|@translate}</strong> <td> - {html_radios name='commentable' values=$false_true output=$no_yes|translate selected=$CAT_COMMENTABLE} + {html_radios name='commentable' values='false,true'|@explode output='No,Yes'|@explode|translate selected=$CAT_COMMENTABLE} </td> </tr> {if isset($SHOW_UPLOADABLE) } <tr> <td><strong>{'editcat_uploadable'|@translate}</strong> <td> - {html_radios name='uploadable' values=$false_true output=$no_yes|translate selected=$CAT_UPLOADABLE} + {html_radios name='uploadable' values='false,true'|@explode output='No,Yes'|@explode|translate selected=$CAT_UPLOADABLE} </td> </tr> {/if} @@ -114,7 +114,7 @@ </fieldset> <p style="text-align:center;"> - <input class="submit" type="submit" value="{'submit'|@translate}" name="submit" {$TAG_INPUT_ENABLED}/> + <input class="submit" type="submit" value="{'Submit'|@translate}" name="submit" {$TAG_INPUT_ENABLED}/> <input class="submit" type="reset" value="{'Reset'|@translate}" name="reset" /> </p> @@ -127,7 +127,7 @@ {if isset($representant.picture) } <a href="{$representant.picture.URL}"><img src="{$representant.picture.SRC}" alt="" class="miniature" /></a> {else} - <img src="{$themeconf.icon_dir}/category_representant_random.png" class="button" alt="{'Random picture'|@translate}" class="miniature" /> + <img src="{$ROOT_URL}{$themeconf.icon_dir}/category_representant_random.png" class="button" alt="{'Random picture'|@translate}" class="miniature" /> {/if} </td> <td> diff --git a/template/yoga/admin/notification_by_mail.tpl b/template/yoga/admin/notification_by_mail.tpl index 3afa4161b..eb5e2a0f9 100644 --- a/template/yoga/admin/notification_by_mail.tpl +++ b/template/yoga/admin/notification_by_mail.tpl @@ -1,125 +1,124 @@ -<!-- DEV TAG: not smarty migrated --> -<!-- $Id: notification_by_mail.tpl Ruben ARNAUD --> +{* $Id$ *} + <div class="titrePage"> <ul class="categoryActions"> - <li><a href="{U_HELP}" onclick="popuphelp(this.href); return false;" title="{lang:Help}"><img src="{themeconf:icon_dir}/help.png" class="button" alt="(?)"></a></li> + <li><a href="{$U_HELP}" onclick="popuphelp(this.href); return false;" title="{'Help'|@translate}"><img src="{$themeconf.icon_dir}/help.png" class="button" alt="(?)"></a></li> </ul> - <h2>{lang:nbm_send_mail_to_users} {TABSHEET_TITLE}</h2> - {TABSHEET} + <h2>{'nbm_send_mail_to_users'|@translate} {$TABSHEET_TITLE}</h2> + {$TABSHEET} </div> -<form method="post" name="notification_by_mail" id="notification_by_mail" action="{F_ACTION}"> - <!-- BEGIN repost --> +<form method="post" name="notification_by_mail" id="notification_by_mail" action="{$F_ACTION}"> + {if isset($REPOST_SUBMIT_NAME)} <fieldset> <div class="infos"> - <input class="submit" type="submit" value="{lang:nbm_repost_submit}" name="{repost.REPOST_SUBMIT_NAME}" {TAG_INPUT_ENABLED}/> + <input class="submit" type="submit" value="{'nbm_repost_submit'|@translate}" name="{$REPOST_SUBMIT_NAME}" {$TAG_INPUT_ENABLED}/> </div> </fieldset> - <!-- END repost --> + {/if} - <!-- BEGIN param --> + {if isset($param)} <fieldset> - <legend>{lang:nbm_title_param}</legend> + <legend>{'nbm_title_param'|@translate}</legend> <table> <tr> - <td><label>{lang:nbm_send_html_mail}</label></td> + <td><label>{'nbm_send_html_mail'|@translate}</label></td> <td> - <label><input type="radio" name="nbm_send_html_mail" value="true" {param.SEND_HTML_MAIL_YES}/>{lang:Yes}</label> - <label><input type="radio" name="nbm_send_html_mail" value="false" {param.SEND_HTML_MAIL_NO}/>{lang:No}</label> + <label><input type="radio" name="nbm_send_html_mail" value="true" {if $param.SEND_HTML_MAIL}checked="checked"{/if}/>{'Yes'|@translate}</label> + <label><input type="radio" name="nbm_send_html_mail" value="false" {if not $param.SEND_HTML_MAIL}checked="checked"{/if}/>{'No'|@translate}</label> </td> </tr> <tr> <td> - <label for="send_mail_as">{lang:nbm_send_mail_as}</label> - <br><i><small>{lang:nbm_info_send_mail_as}</small></i> + <label for="send_mail_as">{'nbm_send_mail_as'|@translate}</label> + <br/><i><small>{'nbm_info_send_mail_as'|@translate}</small></i> </td> - <td><input type="text" maxlength="35" size="35" name="nbm_send_mail_as" id="send_mail_as" value="{param.SEND_MAIL_AS}"/></td> + <td><input type="text" maxlength="35" size="35" name="nbm_send_mail_as" id="send_mail_as" value="{$param.SEND_MAIL_AS}"/></td> </tr> <tr> - <td><label>{lang:nbm_send_detailed_content}</label></td> + <td><label>{'nbm_send_detailed_content'|@translate}</label></td> <td> - <label><input type="radio" name="nbm_send_detailed_content" value="true" {param.SEND_DETAILED_CONTENT_YES}/>{lang:Yes}</label> - <label><input type="radio" name="nbm_send_detailed_content" value="false" {param.SEND_DETAILED_CONTENT_NO}/>{lang:No}</label> + <label><input type="radio" name="nbm_send_detailed_content" value="true" {if $param.SEND_DETAILED_CONTENT}checked="checked"{/if}/>{'Yes'|@translate}</label> + <label><input type="radio" name="nbm_send_detailed_content" value="false" {if not $param.SEND_DETAILED_CONTENT}checked="checked"{/if}/>{'No'|@translate}</label> </td> </tr> <tr> - <td><label for="complementary_mail_content">{lang:nbm_complementary_mail_content}</label></td> - <td><textarea cols="50" rows="5" name="nbm_complementary_mail_content" id="complementary_mail_content">{param.COMPLEMENTARY_MAIL_CONTENT}</textarea></td> + <td><label for="complementary_mail_content">{'nbm_complementary_mail_content'|@translate}</label></td> + <td><textarea cols="50" rows="5" name="nbm_complementary_mail_content" id="complementary_mail_content">{$param.COMPLEMENTARY_MAIL_CONTENT}</textarea></td> </tr> <tr> <td> - <label>{lang:nbm_send_recent_post_dates}</label> - <br><i><small>{lang:nbm_info_send_recent_post_dates}</small></i> + <label>{'nbm_send_recent_post_dates'|@translate}</label> + <br/><i><small>{'nbm_info_send_recent_post_dates'|@translate}</small></i> </td> <td> - <label><input type="radio" name="nbm_send_recent_post_dates" value="true" {param.SEND_RECENT_POST_DATES_YES}/>{lang:Yes}</label> - <label><input type="radio" name="nbm_send_recent_post_dates" value="false" {param.SEND_RECENT_POST_DATES_NO}/>{lang:No}</label> + <label><input type="radio" name="nbm_send_recent_post_dates" value="true" {if $param.SEND_RECENT_POST_DATES}checked="checked"{/if}/>{'Yes'|@translate}</label> + <label><input type="radio" name="nbm_send_recent_post_dates" value="false" {if not $param.SEND_RECENT_POST_DATES}checked="checked"{/if}/>{'No'|@translate}</label> </td> </tr> </table> </fieldset> <p> - <input class="submit" type="submit" value="{lang:Submit}" name="param_submit" {TAG_INPUT_ENABLED}/> - <input class="submit" type="reset" value="{lang:Reset}" name="param_reset"/> + <input class="submit" type="submit" value="{'Submit'|@translate}" name="param_submit" {$TAG_INPUT_ENABLED}/> + <input class="submit" type="reset" value="{'Reset'|@translate}" name="param_reset"/> </p> - <!-- END param --> + {/if}{* isset $param*} - <!-- BEGIN subscribe --> + {if isset($subscribe)} <fieldset> - <legend>{lang:nbm_title_subscribe}</legend> - <p><i>{lang:nbm_warning_subscribe_unsubscribe}</i></p> - {DOUBLE_SELECT} + <legend>{'nbm_title_subscribe'|@translate}</legend> + <p><i>{'nbm_warning_subscribe_unsubscribe'|@translate}</i></p> + {$DOUBLE_SELECT} </fieldset> - <!-- END subscribe --> + {/if}{* isset $subscribe*} - <!-- BEGIN send --> - <!-- BEGIN send_empty --> - <p>{lang:nbm_no_user_available_to_send_L1}</p> + {if isset($send)} + {if empty($send.users)} + <p>{'nbm_no_user_available_to_send_L1'|@translate}</p> <p> - {lang:nbm_no_user_available_to_send_L2}<br> - {lang:nbm_no_user_available_to_send_L3} + {'nbm_no_user_available_to_send_L2'|@translate}<br> + {'nbm_no_user_available_to_send_L3'|@translate} </p> - <!-- END send_empty --> - <!-- BEGIN send_data --> + {else} <fieldset> - <legend>{lang:nbm_title_send}</legend> + <legend>{'nbm_title_send'|@translate}</legend> <table class="table2"> <tr class="throw"> - <th>{lang:nbm_col_user}</th> - <th>{lang:nbm_col_mail}</th> - <th>{lang:nbm_col_last_send}</th> - <th>{lang:nbm_col_check_user_send_mail}</th> + <th>{'nbm_col_user'|@translate}</th> + <th>{'nbm_col_mail'|@translate}</th> + <th>{'nbm_col_last_send'|@translate}</th> + <th>{'nbm_col_check_user_send_mail'|@translate}</th> </tr> - <!-- BEGIN user_send_mail --> - <tr class="{send.send_data.user_send_mail.CLASS}"> - <td><label for="send_selection-{send.send_data.user_send_mail.ID}">{send.send_data.user_send_mail.USERNAME}</label></td> - <td><label for="send_selection-{send.send_data.user_send_mail.ID}">{send.send_data.user_send_mail.EMAIL}</label></td> - <td><label for="send_selection-{send.send_data.user_send_mail.ID}">{send.send_data.user_send_mail.LAST_SEND}</label></td> - <td><input type="checkbox" name="send_selection[]" value="{send.send_data.user_send_mail.ID}" {send.send_data.user_send_mail.CHECKED} id="send_selection-{send.send_data.user_send_mail.ID}"/></td> + {foreach from=$send.users item=u name=user_loop} + <tr class="{if $smarty.foreach.user_loop.index is odd}row1{else}row2{/if}"> + <td><label for="send_selection-{$u.ID}">{$u.USERNAME}</label></td> + <td><label for="send_selection-{$u.ID}">{$u.EMAIL}</label></td> + <td><label for="send_selection-{$u.ID}">{$u.LAST_SEND}</label></td> + <td><input type="checkbox" name="send_selection[]" value="{$u.ID}" {$u.CHECKED} id="send_selection-{$u.ID}"/></td> </tr> - <!-- END user_send_mail --> + {/foreach} </table> <p> - <a href="#" onclick="SelectAll(document.getElementById('notification_by_mail')); return false;">{lang:Check all}</a> - / <a href="#" onclick="DeselectAll(document.getElementById('notification_by_mail')); return false;">{lang:Uncheck all}</a> + <a href="#" onclick="SelectAll(document.getElementById('notification_by_mail')); return false;">{'Check all'|@translate}</a> + / <a href="#" onclick="DeselectAll(document.getElementById('notification_by_mail')); return false;">{'Uncheck all'|@translate}</a> </p> </fieldset> <fieldset> - <legend>{lang:nbm_send_options}</legend> + <legend>{'nbm_send_options'|@translate}</legend> <table> <tr> - <td><label for="send_customize_mail_content">{lang:nbm_send_complementary_mail_content}</label></td> - <td><textarea cols="50" rows="5" name="send_customize_mail_content" id="send_customize_mail_content">{send.send_data.CUSTOMIZE_MAIL_CONTENT}</textarea></td> + <td><label for="send_customize_mail_content">{'nbm_send_complementary_mail_content'|@translate}</label></td> + <td><textarea cols="50" rows="5" name="send_customize_mail_content" id="send_customize_mail_content">{$send.CUSTOMIZE_MAIL_CONTENT}</textarea></td> </tr> </table> </fieldset> <p> - <input class="submit" type="submit" value="{lang:nbm_send_submit}" name="send_submit" {TAG_INPUT_ENABLED}/> + <input class="submit" type="submit" value="{'nbm_send_submit'|@translate}" name="send_submit" {$TAG_INPUT_ENABLED}/> </p> - <!-- END send_data --> - <!-- END send --> + {/if} + {/if}{* isset $send*} </form> diff --git a/template/yoga/admin/user_list.tpl b/template/yoga/admin/user_list.tpl index 25b0e705e..db67093f6 100644 --- a/template/yoga/admin/user_list.tpl +++ b/template/yoga/admin/user_list.tpl @@ -12,7 +12,7 @@ <label>{'Username'|@translate} <input type="text" name="login" maxlength="50" size="20" /></label> <label>{'Password'|@translate} <input type="text" name="password" /></label> <label>{'Email address'|@translate} <input type="text" name="email" /></label> - <input class="submit" type="submit" name="submit_add" value="{'submit'|@translate}" {$TAG_INPUT_ENABLED} /> + <input class="submit" type="submit" name="submit_add" value="{'Submit'|@translate}" {$TAG_INPUT_ENABLED} /> </fieldset> </form> @@ -43,13 +43,13 @@ {html_options name=direction options=$direction_options selected=$direction_selected} </label> - <input class="submit" type="submit" value="{'submit'|@translate}" /> + <input class="submit" type="submit" value="{'Submit'|@translate}" /> </fieldset> </form> -<form method="post" name="preferences" action="{$F_PREF_ACTION}"> +<form method="post" name="preferences" action=""> <table class="table2"> <tr class="throw"> @@ -59,9 +59,11 @@ <th>{'Email address'|@translate}</th> <th>{'Groups'|@translate}</th> <th>{'properties'|@translate}</th> - {foreach from=$cpl_title_user item=title} + {if not empty($plugin_user_list_column_titles)} + {foreach from=$plugin_user_list_column_titles item=title} <th>{$title}</th> {/foreach} + {/if} <th>{'Actions'|@translate}</th> </tr> {foreach from=$users item=user name=users_loop} @@ -72,13 +74,13 @@ <td>{$user.EMAIL}</td> <td>{$user.GROUPS}</td> <td>{$user.PROPERTIES}</td> - {foreach from=$cpl_user[$smarty.foreach.users_loop.index] item=data} + {foreach from=$user.plugin_columns item=data} <td>{$data}</td> {/foreach} <td style="text-align:center;"> <a href="{$user.U_PERM}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/permissions.png" class="button" style="border:none" alt="{'permissions'|@translate}" title="{'permissions'|@translate}" /></a> <a href="{$user.U_PROFILE}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/edit_s.png" class="button" style="border:none" alt="{'Profile'|@translate}" title="{'Profile'|@translate}" /></a> - {foreach from=$cpl_link_user[$smarty.foreach.users_loop.index] item=data} + {foreach from=$user.plugin_actions item=data} {$data} {/foreach} </td> @@ -103,8 +105,8 @@ <td>{'Status'|@translate}</td> <td> <label><input type="radio" name="status_action" value="leave" checked="checked" /> {'leave'|@translate}</label> - <label><input type="radio" name="status_action" value="set" id="status_action_set" {$STATUS_ACTION_SET} /> {'set to'|@translate}</label> - <select onmousedown="document.getElementById('status_action_set').checked = true;" name="status" size="1"> + <label><input type="radio" name="status_action" value="set" id="status_action_set" /> {'set to'|@translate}</label> + <select onchange="document.getElementById('status_action_set').checked = true;" name="status" size="1"> {html_options options=$pref_status_options selected=$pref_status_selected} </select> </td> @@ -116,8 +118,8 @@ <td> <label><input type="radio" name="adviser" value="leave" checked="checked" /> {'leave'|@translate}</label> / {'set to'|@translate} - <label><input type="radio" name="adviser" value="true" {$ADVISER_YES} />{'Yes'|@translate}</label> - <label><input type="radio" name="adviser" value="false" {$ADVISER_NO} />{'No'|@translate}</label> + <label><input type="radio" name="adviser" value="true" />{'Yes'|@translate}</label> + <label><input type="radio" name="adviser" value="false" />{'No'|@translate}</label> </td> </tr> {/if} @@ -160,8 +162,8 @@ <td> <label><input type="radio" name="enabled_high" value="leave" checked="checked" /> {'leave'|@translate}</label> / {'set to'|@translate} - <label><input type="radio" name="enabled_high" value="true" {$ENABLED_HIGH_YES} />{'Yes'|@translate}</label> - <label><input type="radio" name="enabled_high" value="false" {$ENABLED_HIGH_NO} />{'No'|@translate}</label> + <label><input type="radio" name="enabled_high" value="true" />{'Yes'|@translate}</label> + <label><input type="radio" name="enabled_high" value="false" />{'No'|@translate}</label> </td> </tr> @@ -169,8 +171,8 @@ <td>{'Privacy level'|@translate}</td> <td> <label><input type="radio" name="level_action" value="leave" checked="checked" />{'leave'|@translate}</label> - <label><input type="radio" name="level_action" value="set" id="level_action_set" {$LEVEL_ACTION_SET} />{'set to'|@translate}</label> - <select onmousedown="document.getElementById('level_action_set').checked = true;" name="level" size="1"> + <label><input type="radio" name="level_action" value="set" id="level_action_set" />{'set to'|@translate}</label> + <select onchange="document.getElementById('level_action_set').checked = true;" name="level" size="1"> {html_options options=$level_options selected=$level_selected} </select> </td> @@ -190,7 +192,7 @@ <td>{'nb_image_per_row'|@translate}</td> <td> <label><input type="radio" name="nb_image_line_action" value="leave" checked="checked" /> {'leave'|@translate}</label> - <label><input type="radio" name="nb_image_line_action" value="set" id="nb_image_line_action_set" {$NB_IMAGE_LINE_ACTION_SET} /> {'set to'|@translate}</label> + <label><input type="radio" name="nb_image_line_action" value="set" id="nb_image_line_action_set" /> {'set to'|@translate}</label> <input onmousedown="document.getElementById('nb_image_line_action_set').checked = true;" size="3" maxlength="2" type="text" name="nb_image_line" value="{$NB_IMAGE_LINE}" /> </td> @@ -200,7 +202,7 @@ <td>{'nb_row_per_page'|@translate}</td> <td> <label><input type="radio" name="nb_line_page_action" value="leave" checked="checked" /> {'leave'|@translate}</label> - <label><input type="radio" name="nb_line_page_action" value="set" id="nb_line_page_action_set" {$NB_LINE_PAGE_ACTION_SET} /> {'set to'|@translate}</label> + <label><input type="radio" name="nb_line_page_action" value="set" id="nb_line_page_action_set" /> {'set to'|@translate}</label> <input onmousedown="document.getElementById('nb_line_page_action_set').checked = true;" size="3" maxlength="2" type="text" name="nb_line_page" value="{$NB_LINE_PAGE}" /> <td> @@ -210,8 +212,8 @@ <td>{'theme'|@translate}</td> <td> <label><input type="radio" name="template_action" value="leave" checked="checked" /> {'leave'|@translate}</label> - <label><input type="radio" name="template_action" value="set" id="template_action_set" {$TEMPLATE_ACTION_SET} /> {'set to'|@translate}</label> - <select onmousedown="document.getElementById('template_action_set').checked = true;" name="template" size="1"> + <label><input type="radio" name="template_action" value="set" id="template_action_set" /> {'set to'|@translate}</label> + <select onchange="document.getElementById('template_action_set').checked = true;" name="template" size="1"> {html_options values=$template_options output=$template_options selected=$template_selected} </select> </td> @@ -221,8 +223,8 @@ <td>{'language'|@translate}</td> <td> <label><input type="radio" name="language_action" value="leave" checked="checked" /> {'leave'|@translate}</label> - <label><input type="radio" name="language_action" value="set" id="language_action_set" {$LANGUAGE_ACTION_SET} /> {'set to'|@translate}</label> - <select onmousedown="document.getElementById('language_action_set').checked = true;" name="language" size="1"> + <label><input type="radio" name="language_action" value="set" id="language_action_set" /> {'set to'|@translate}</label> + <select onchange="document.getElementById('language_action_set').checked = true;" name="language" size="1"> {html_options options=$language_options selected=$language_selected} </select> </td> @@ -232,7 +234,7 @@ <td>{'recent_period'|@translate}</td> <td> <label><input type="radio" name="recent_period_action" value="leave" checked="checked" /> {'leave'|@translate}</label> - <label><input type="radio" name="recent_period_action" value="set" id="recent_period_action_set" {$RECENT_PERIOD_ACTION_SET} /> {'set to'|@translate}</label> + <label><input type="radio" name="recent_period_action" value="set" id="recent_period_action_set" /> {'set to'|@translate}</label> <input onmousedown="document.getElementById('recent_period_action_set').checked = true;" type="text" size="3" maxlength="2" name="recent_period" value="{$RECENT_PERIOD}" /> </td> @@ -243,8 +245,8 @@ <td> <label><input type="radio" name="expand" value="leave" checked="checked" /> {'leave'|@translate}</label> / {'set to'|@translate} - <label><input type="radio" name="expand" value="true" {$EXPAND_YES} />{'Yes'|@translate}</label> - <label><input type="radio" name="expand" value="false" {$EXPAND_NO} />{'No'|@translate}</label> + <label><input type="radio" name="expand" value="true" />{'Yes'|@translate}</label> + <label><input type="radio" name="expand" value="false" />{'No'|@translate}</label> </td> </tr> @@ -253,8 +255,8 @@ <td> <label><input type="radio" name="show_nb_comments" value="leave" checked="checked" /> {'leave'|@translate}</label> / {'set to'|@translate} - <label><input type="radio" name="show_nb_comments" value="true" {$SHOW_NB_COMMENTS_YES} />{'Yes'|@translate}</label> - <label><input type="radio" name="show_nb_comments" value="false" {$SHOW_NB_COMMENTS_NO} />{'No'|@translate}</label> + <label><input type="radio" name="show_nb_comments" value="true" />{'Yes'|@translate}</label> + <label><input type="radio" name="show_nb_comments" value="false" />{'No'|@translate}</label> </td> </tr> @@ -263,8 +265,8 @@ <td> <label><input type="radio" name="show_nb_hits" value="leave" checked="checked" /> {'leave'|@translate}</label> / {'set to'|@translate} - <label><input type="radio" name="show_nb_hits" value="true" {$SHOW_NB_HITS_YES} />{'Yes'|@translate}</label> - <label><input type="radio" name="show_nb_hits" value="false" {$SHOW_NB_HITS_NO} />{'No'|@translate}</label> + <label><input type="radio" name="show_nb_hits" value="true" />{'Yes'|@translate}</label> + <label><input type="radio" name="show_nb_hits" value="false" />{'No'|@translate}</label> </td> </tr> @@ -273,7 +275,7 @@ <td> <label><input type="radio" name="maxwidth_action" value="leave" checked="checked" /> {'leave'|@translate}</label> <label><input type="radio" name="maxwidth_action" value="unset" /> {'unset'|@translate}</label> - <label><input type="radio" name="maxwidth_action" value="set" id="maxwidth_action_set" {$MAXWIDTH_ACTION_SET} /> {'set to'|@translate}</label> + <label><input type="radio" name="maxwidth_action" value="set" id="maxwidth_action_set" /> {'set to'|@translate}</label> <input onmousedown="document.getElementById('maxwidth_action_set').checked = true;" type="text" size="4" maxlength="4" name="maxwidth" value="{$MAXWIDTH}" /> </td> @@ -285,7 +287,7 @@ <td> <label><input type="radio" name="maxheight_action" value="leave" checked="checked" /> {'leave'|@translate}</label> <label><input type="radio" name="maxheight_action" value="unset" /> {'unset'|@translate}</label> - <label><input type="radio" name="maxheight_action" value="set" id="maxheight_action_set" {$MAXHEIGHT_ACTION_SET} /> {'set to'|@translate}</label> + <label><input type="radio" name="maxheight_action" value="set" id="maxheight_action_set" /> {'set to'|@translate}</label> <input onmousedown="document.getElementById('maxheight_action_set').checked = true;" type="text" size="4" maxlength="4" name="maxheight" value="{$MAXHEIGHT}" /> </td> |