/lib/galaxy/webapps/reports/templates/registered_users_specified_month.mako
Mako | 35 lines | 34 code | 1 blank | 0 comment | 2 complexity | 046897500f471bd7b5e6ab4dbaed8e5e MD5 | raw file
1<%inherit file="/base_panels.mako"/>
2
3<%def name="main_body()">
4 <div class="reportBody">
5 <h3 align="center">User Registrations for ${month_label} ${year_label}</h3>
6 <h4 align="center">Click Day to see user registrations for that day</h4>
7 %if msg:
8 <table align="center" width="70%" class="border" cellpadding="5" cellspacing="5">
9 <tr><td class="ok_bgr">${msg}</td></tr>
10 </table>
11 %endif
12 <table align="center" width="60%" class="colored">
13 %if len( users ) == 0:
14 <tr><td colspan="2">There are no user registrations for ${month_label} ${year_label}</td></tr>
15 %else:
16 <tr class="header">
17 <td>Day</td>
18 <td>New Registrations</td>
19 </tr>
20 <% ctr = 0 %>
21 %for user in users:
22 %if ctr % 2 == 1:
23 <tr class="odd_row">
24 %else:
25 <tr class="tr">
26 %endif
27 <td><a href="${h.url_for( controller='users', action='specified_date', specified_date=user[0], day_label=user[3], month_label=month_label, year_label=year_label, day_of_month=user[1] )}">${user[3]}, ${month_label} ${user[1]}, ${year_label}</a></td>
28 <td>${user[2]}</td>
29 </tr>
30 <% ctr += 1 %>
31 %endfor
32 %endif
33 </table>
34 </div>
35</%def>