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

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

Merge branch 'dyngroup'

File size: 444 bytes
Line 
1[% FOREACH u = ofilter.objectslist %]
2[% IF loop.first %]
3<table>
4[% END %]
5<tr>
6    <td>[% u | html %]</td>
7    <td><input type=checkbox name="user" checked=1 value="[% u | html %]">
8[%  c.prototype.link_to_remote( '+', {
9    update => 'destlist',
10    url    => c.uri_for('/ajax', 'services', 'mailing', 'mod_to', {
11        'act'  => 'add_to',
12        'user' => u,
13    })
14} ) %]
15    </td>
16</tr>
17[% IF loop.last %]
18</table>
19[% END %]
20[% END %]
Note: See TracBrowser for help on using the repository browser.