source: indico/indico/MaKaC/webinterface/tpls/CategoryListItem.tpl @ fab922

burotelhello-world-walkthroughipv6v0.98-seriesv0.98.2v0.98.3v0.98b1v0.98b2v0.99v1.0v1.1
Last change on this file since fab922 was 9033fd, checked in by Pedro Ferreira <jose.pedro.ferreira@…>, 4 years ago

Import from CVS (2009-06-29).

  • Marked all the files' author as 'Indico Team';
  • Restructured directory tree;
  • Modified setup.py;
  • Property mode set to 100644
File size: 1.4 KB
Line 
1<li>
2      <span>
3        <% if lItem.getConferenceList() != []: %>           
4                <a style="display: none;" href="<%= urlHandlers.UHCategoryToiCal.getURL(lItem) %>"><img src="<%= systemIcon("ical") %>" alt="<%= _("iCal export")%>" /></a>
5        <% end %>
6      </span>
7      <span style="display: none;" class="list1stDeg">
8        <a href="<%= urlHandlers.UHCalendar.getURL([lItem]) %>"><img src="<%= systemIcon("year") %>" alt="<%= _("Calendar")%>" /></a>
9      </span>
10      <span style="display: none;" class="list2ndDeg">
11        <a href="<%= urlHandlers.UHCategoryOverview.getURL(lItem) %>"><img src="<%= systemIcon("day") %>" alt="<%= _("Overview")%>" /></a>
12      </span>
13      <span style="display: none;" class="list3rdDeg">
14        <a href="<%= urlHandlers.UHCategoryStatistics.getURL(lItem) %>"><img src="<%= systemIcon("stat") %>" alt="<%= _("Statistics")%>" /></a>
15      </span>
16      <span>
17        <a href="<%= categoryDisplayURLGen(lItem) %>"><%= escape(lItem.getName().strip()) or _("[no title]") %></a>
18       
19        <em>(<%= lItem.getNumConferences() %>)</em>
20
21                <% if lItem.hasAnyProtection(): %>
22                <span class="protected">
23                                <% if lItem.getDomainList() != []: %>
24                                        <%= "%s domain only"%(", ".join(map(lambda x: x.getName(), lItem.getDomainList()))) %>
25                                <% end %>
26                                <% else: %>
27                                        <%= _("(protected)")%>
28                                <% end %>
29                        </span>
30                <% end %>
31      </span>
32
33</li>
Note: See TracBrowser for help on using the repository browser.