source: trunk/template/yoga/admin/group_list.tpl @ 2260

Last change on this file since 2260 was 2222, checked in by rub, 17 years ago

Add comment tags in order to know tpl to migrate

# tag
for f in find . -name \*.tpl
do

echo $f
mv $f $f.tmp
echo '<!-- DEV TAG: not smarty migrated -->' > $f
cat $f.tmp >> $f
rm -f $f.tmp

done

#find file not migrated
for f in find . -name \*.tpl
do

grep -i '<!-- DEV TAG: not smarty migrated -->' $f > /dev/null && echo $f

done

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 2.1 KB
Line 
1<!-- DEV TAG: not smarty migrated -->
2<!-- $Id: group_list.tpl 2222 2008-02-27 23:08:44Z rub $ -->
3<div class="titrePage">
4  <ul class="categoryActions">
5    <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>
6  </ul>
7  <h2>{lang:title_groups}</h2>
8</div>
9
10<form method="post" name="add_user" action="{F_ADD_ACTION}" class="properties">
11  <fieldset>
12    <legend>{lang:Add group}</legend>
13
14    <span class="property">
15      <label for="groupname">{lang:Group name}</label>
16    </span>
17    <input type="text" id="groupname" name="groupname" maxlength="50" size="20" />
18
19    <p>
20      <input class="submit" type="submit" name="submit_add" value="{lang:Add}" {TAG_INPUT_ENABLED}/>
21    </p>
22  </fieldset>
23</form>
24
25<table class="table2">
26  <tr class="throw">
27    <th>{lang:Group name}</th>
28    <th>{lang:Members}</th>
29    <th>{lang:Actions}</th>
30  </tr>
31  <!-- BEGIN group -->
32  <tr class="{group.CLASS}">
33    <td>{group.NAME}<i><small>{group.IS_DEFAULT}</small></i></td>
34    <td><a href="{group.U_MEMBERS}">{group.MEMBERS}</a></td>
35    <td style="text-align:center;">
36      <a href="{group.U_PERM}">
37        <img src="{themeconf:icon_dir}/permissions.png" class="button" style="border:none" id="btn_permissions" alt="{lang:permissions}" title="{lang:permissions}" /></a>
38      <a href="{group.U_DELETE}" onclick="return confirm('{lang:Action: }' + document.getElementById('btn_delete').title + '\n\n' + '{lang:Are you sure?}');">
39        <img src="{themeconf:icon_dir}/delete.png" class="button" style="border:none" id="btn_delete" alt="{lang:delete}" title="{lang:delete}" {TAG_INPUT_ENABLED}/></a>
40      <a href="{group.U_ISDEFAULT}" onclick="return confirm('{lang:Action: }' + document.getElementById('btn_toggle_is_default_group').title + '\n\n' + '{lang:Are you sure?}');">
41        <img src="{themeconf:icon_dir}/toggle_is_default_group.png" class="button" style="border:none" id="btn_toggle_is_default_group" alt="{lang:toggle_is_default_group}" title="{lang:toggle_is_default_group}" {TAG_INPUT_ENABLED}/></a>
42    </td>
43  </tr>
44  <!-- END group -->
45</table>
Note: See TracBrowser for help on using the repository browser.