Changeset 614 for trunk/template/default
- Timestamp:
- Nov 23, 2004, 11:31:24 PM (20 years ago)
- Location:
- trunk/template/default
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/template/default/admin.tpl
r602 r614 39 39 <li><a class="adminMenu" href="{U_CATEGORIES}">{L_MANAGE}</a></li> 40 40 <li><a class="adminMenu" href="{U_UPLOAD}">{L_UPLOAD}</a></li> 41 <li><a class="adminMenu" href="{U_CAT_OPTIONS}">{L_CAT_OPTIONS}</a></li> 41 <li><a class="adminMenu" href="{U_COMMENTS}">{L_COMMENTS}</a></li> 42 <li><a class="adminMenu" href="{U_VISIBLE}">{L_VISIBLE}</a></li> 43 <li><a class="adminMenu" href="{U_STATUS}">{L_STATUS}</a></li> 42 44 </ul> 43 45 </div> -
trunk/template/default/admin/cat_options.tpl
r604 r614 1 <p class="confMenu"> 2 <a class="{UPLOAD_CLASS}" href="{U_UPLOAD}">{L_CAT_OPTIONS_MENU_UPLOAD}</a> 3 <a class="{COMMENTS_CLASS}" href="{U_COMMENTS}">{L_CAT_OPTIONS_MENU_COMMENTS}</a> 4 <a class="{VISIBLE_CLASS}" href="{U_VISIBLE}">{L_CAT_OPTIONS_MENU_VISIBLE}</a> 5 <a class="{STATUS_CLASS}" href="{U_STATUS}">{L_CAT_OPTIONS_MENU_STATUS}</a> 6 </p> 1 <table width="100%" align="center"> 2 <tr class="admin"> 3 <th colspan="2">{L_TITLE}</th> 4 </tr> 5 </table> 7 6 8 7 <form action="{F_ACTION}" method="post"> 9 8 10 <select style="width:500px" multiple="multiple" name="cat[]" size="20"> 11 <!-- BEGIN category_option --> 12 <option class="{category_option.CLASS}" {category_option.SELECTED} value="{category_option.VALUE}">{category_option.OPTION}</option> 13 <!-- END category_option --> 9 <table> 10 <tr> 11 <td style="text-align:center;">{L_CAT_OPTIONS_TRUE}</td> 12 <td></td> 13 <td style="text-align:center;">{L_CAT_OPTIONS_FALSE}</td> 14 </tr> 15 <tr> 16 <td> 17 <select style="width:300px" multiple="multiple" name="cat_true[]" size="20"> 18 <!-- BEGIN category_option_true --> 19 <option class="{category_option_true.CLASS}" {category_option_true.SELECTED} value="{category_option_true.VALUE}">{category_option_true.OPTION}</option> 20 <!-- END category_option_true --> 14 21 </select> 22 </td> 23 <td valign="middle"> 24 <input type="submit" value="→" name="falsify" style="font-size:15px;" class="bouton" /> 25 <br /> 26 <input type="submit" value="←" name="trueify" style="font-size:15px;" class="bouton" /> 27 </td> 28 <td> 29 <select style="width:300px" multiple="multiple" name="cat_false[]" size="20"> 30 <!-- BEGIN category_option_false --> 31 <option class="{category_option_false.CLASS}" {category_option_false.SELECTED} value="{category_option_false.VALUE}">{category_option_false.OPTION}</option> 32 <!-- END category_option_false --> 33 </select> 34 </td> 35 </tr> 36 </table> 15 37 16 <!-- BEGIN upload --> 17 <p>{L_CAT_OPTIONS_UPLOAD_INFO}</p> 18 <p> 19 <input type="radio" name="option" value="true"/> <span class="optionTrue">{L_CAT_OPTIONS_UPLOAD_TRUE}</span> 20 </p> 21 <p> 22 <input type="radio" name="option" value="false"/> <span class="optionFalse">{L_CAT_OPTIONS_UPLOAD_FALSE}</span> 23 </p> 24 <!-- END upload --> 25 26 <!-- BEGIN comments --> 27 <p>{L_CAT_OPTIONS_COMMENTS_INFO}</p> 28 <p> 29 <input type="radio" name="option" value="true"/> <span class="optionTrue">{L_CAT_OPTIONS_COMMENTS_TRUE}</span> 30 </p> 31 <p> 32 <input type="radio" name="option" value="false"/> <span class="optionFalse">{L_CAT_OPTIONS_COMMENTS_FALSE}</span> 33 </p> 34 <!-- END comments --> 35 36 <!-- BEGIN visible --> 37 <p>{L_CAT_OPTIONS_VISIBLE_INFO}</p> 38 <p> 39 <input type="radio" name="option" value="true"/> <span class="optionTrue">{L_CAT_OPTIONS_VISIBLE_TRUE}</span> 40 </p> 41 <p> 42 <input type="radio" name="option" value="false"/> <span class="optionFalse">{L_CAT_OPTIONS_VISIBLE_FALSE}</span> 43 </p> 44 <!-- END visible --> 45 46 <!-- BEGIN status --> 47 <p>{L_CAT_OPTIONS_STATUS_INFO}</p> 48 <p> 49 <input type="radio" name="option" value="true"/> <span class="optionTrue">{L_CAT_OPTIONS_STATUS_TRUE}</span> 50 </p> 51 <p> 52 <input type="radio" name="option" value="false"/> <span class="optionFalse">{L_CAT_OPTIONS_STATUS_FALSE}</span> 53 </p> 54 <!-- END status --> 38 <p>{L_CAT_OPTIONS_INFO}</p> 55 39 56 40 <p style="text-align:center;"> 57 <input type="submit" value="{L_SUBMIT}" name="submit" class="bouton" />58 41 <input type="reset" name="reset" value="{L_RESET}" class="bouton" /> 59 42 </p> -
trunk/template/default/admin/user_perm.tpl
r539 r614 13 13 <ul class="menu"> 14 14 <!-- BEGIN category --> 15 <li> <a href="{permission.category.CAT_URL}">{permission.category.CAT_NAME}</a> 15 <li> 16 <input type="radio" name="{permission.category.CAT_ID}" value="0" {permission.category.AUTH_YES}/>{L_AUTHORIZED} 17 <input type="radio" name="{permission.category.CAT_ID}" value="1" {permission.category.AUTH_NO}/>{L_FORBIDDEN} 18 : 19 <a href="{permission.category.CAT_URL}">{permission.category.CAT_NAME}</a> 16 20 <!-- BEGIN parent_forbidden --> 17 21 {L_PARENT_FORBIDDEN} - 18 22 <!-- END parent_forbidden --> 19 <input type="radio" name="{permission.category.CAT_ID}" value="0" {permission.category.AUTH_YES}/>{L_AUTHORIZED}20 <input type="radio" name="{permission.category.CAT_ID}" value="1" {permission.category.AUTH_NO}/>{L_FORBIDDEN}21 23 </li> 22 24 <!-- END category --> -
trunk/template/default/category.tpl
r555 r614 8 8 </div> 9 9 <div class="menu"> 10 <ul class="menu">11 10 {MENU_CATEGORIES_CONTENT} 12 </ul>13 11 <div class="totalImages">[ {NB_PICTURE} {L_TOTAL} ]</div> 14 12 </div>
Note: See TracChangeset
for help on using the changeset viewer.