source: branches/2.4/prototype/modules/calendar/templates/participants_add_itemlist.ejs @ 7382

Revision 7382, 1.3 KB checked in by eduardow, 11 years ago (diff)

Ticket #3144 - Nao é enviado email para o usuario ao qual é delegado um evento

Line 
1<li class="attendee"> 
2        <div style="overflow:hidden; width:100%; display:table;">
3                <div class="attendee-options">
4                        <%if( !data[0].isDelegate && ((!data[0].isDirty && data[0].notEvent) || (!data[0].isDirty && data[0].acl && (data[0].acl.organization || data[0].acl.write || data[0].acl.inviteGuests)))){%>
5                                <a href="#" class="button delegate attendee-options-button-delegate new">Delegar participação a este participante</a>
6                        <%}%>
7                        <%if(!data[0].noEvent && data[0].acl && (data[0].acl.organization || data[0].acl.write)){%>
8                                <a class="button edit attendee-options-button-edit new">Editar permissões</a>
9                        <%}%>
10                        <a class="button close new">Remover</a>
11                </div>
12               
13                <input class="new" type="checkbox" value="<%= data[0].id %>">
14                <input type="hidden" name="attendee[]" value="<%= data[0].id %>">
15                <input type="hidden" name="attendeeType[]" value="<%=data[0].isExternal%>">
16                <%if(!data[0].noEvent){%>
17            <input type="hidden" name="attendeeAcl[]" value="r">
18        <%}%>
19                <input type="hidden" name="delegatedFrom[]" value="0">
20                <label title="<%= data[0].name ? data[0].name : '' %>" class="name"><%= data[0].name ? data[0].name : '' %></label>
21                <label title="<%= data[0].mail ? data[0].mail : '' %>" class="mail <%= data[0].name ? 'hidden' : ''%>"><%= data[0].mail ? data[0].mail : '' %></label>
22
23        </div>
24</li>
Note: See TracBrowser for help on using the repository browser.