source: trunk/LATMOS-Accounts-Web/root/html/includes/defs.tt @ 1162

Last change on this file since 1162 was 1162, checked in by nanardon, 12 years ago

fix conflict

File size: 1.1 KB
Line 
1
2[% perm_denied = BLOCK %]
3<span class="permdenied"><img src="[% c.uri_for('/static', 'images', 'process-stop.png') %]">
4    permission non accordé
5</span>
6[% END %]
7
8[% BLOCK user_flag %]
9[% INCLUDE object_flag object = ouser %]
10[% END %]
11
12[% BLOCK object_flag %]
13[% IF object.type == 'user' %]
14    [% IF object.get_attributes('unexported') %]
15<img src="[% c.uri_for('/static', 'images', 'gtk-delete.png') %]"
16class="notice" title="Ce compte est désactivé" alt="disable">
17    [% ELSIF object.get_attributes('expired') %]
18<img src="[% c.uri_for('/static', 'images', 'emblem-urgent.png') %]"
19class="notice" title="Ce compte est expiré ([% object.get_attributes('expired') %])" alt="expired">
20    [% ELSIF object.get_attributes('expire') %]
21<img src="[% c.uri_for('/static', 'images', 'appointment-new.png') %]"
22class="notice" title="Ce compte est temporaire ([% object.get_attributes('expire') %])" alt="temporary">
23    [% END %]
24[% ELSE %]
25    [% IF object.get_attributes('unexported') %]
26<img src="[% c.uri_for('/static', 'images', 'gtk-delete.png') %]"
27class="notice" title="Cette entrée est désactivés" alt="disable">
28    [% END %]
29[% END %]
30[% END %]
31
Note: See TracBrowser for help on using the repository browser.