Changeset 738
- Timestamp:
- 09/10/05 19:46:25 (8 years ago)
- Location:
- trunk/wifidog-auth/wifidog/admin
- Files:
-
- 2 modified
-
templates/user_log.html (modified) (5 diffs)
-
user_log.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/wifidog/admin/templates/user_log.html
r737 r738 1 <fieldset class="pretty_fieldset"> 2 <legend>User list</legend> 1 3 {if $error} 2 4 <div id="help"> … … 4 6 </div> 5 7 {else} 6 <div>7 8 <form method="get"> 8 9 Sort: <select name="sort">{html_options values=$sort_ids selected=$sort output=$sort_ids}</select> … … 10 11 <input type="submit" value="{"Sort"|_}"> 11 12 </form> 12 </div>13 13 14 <div>15 14 <table> 16 15 <tr> … … 31 30 {/section} 32 31 </table> 33 </ div>32 </fieldset> 34 33 <br> 35 34 … … 40 39 <a {if $pages[i].selected}style="font-weight: bold;" {/if}href="?sort={$sort}&direction={$direction}&page={$pages[i].number}">{$pages[i].number}</a> 41 40 {/section} 42 </div>43 41 {/if} 44 42 -
trunk/wifidog-auth/wifidog/admin/user_log.php
r722 r738 24 24 */ 25 25 define('BASEPATH', '../'); 26 require_once 'admin_common.php';26 require_once BASEPATH.'admin/admin_common.php'; 27 27 require_once BASEPATH.'classes/MainUI.php'; 28 28 … … 116 116 117 117 // Display user selection form 118 $html = "<b>"._("Find a User ID : ")."</b><br>\n"; 118 $html .= "<fieldset class=\"pretty_fieldset\">"; 119 $html .= "<legend>" . _("Find a user ID : ") . "</legend>"; 119 120 $html .= "<form method='POST' action=''>\n"; 120 121 $html .= User::getSelectUserUI("user_id_searchbox")."<br>\n"; 121 122 $html .= "<input type='submit'>\n"; 122 123 $html .= "</form><p>\n"; 124 $html .= "</fieldset>"; 123 125 $html .= $smarty->fetch("admin/templates/user_log.html"); 124 126
