source: trunk/LATMOS-Accounts-Web/root/html/ajax/services/mailing/dest_list.tt @ 1135

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

Merge branch 'dyngroup'

File size: 475 bytes
Line 
1
2<p>[% c.session.to.keys.size %] destinataires</p>
3
4<div style="height: 20em; overflow: auto">
5[% FOREACH u = c.session.to.keys.sort %]
6[% IF loop.first %]
7<table>
8[% END %]
9<tr>
10<td>[% u | html %]</td>
11<td>
12[%  c.prototype.link_to_remote( 'Sup', {
13    update => 'destlist',
14    url    => c.uri_for('/ajax', 'services', 'mailing', 'mod_to', {
15        'act'  => 'remove_to',
16        'user' => u,
17    })
18} ) %]
19</td>
20</tr>
21[% IF loop.last %]
22<table>
23[% END %]
24[% END %]
25</div>
Note: See TracBrowser for help on using the repository browser.