source: indico/indico/MaKaC/webinterface/tpls/events/lectures/IndicoLecture.tpl @ 118f96

hello-world-walkthroughipv6v0.98-seriesv0.98.2v0.98.3v0.99v1.0v1.1
Last change on this file since 118f96 was 118f96, checked in by Pedro Ferreira <jose.pedro.ferreira@…>, 18 months ago

[FIX] refreshing the lecture or meeting page when clicking on the body

closes #463

  • Property mode set to 100644
File size: 1.0 KB
Line 
1<%namespace name="common" file="${context['INCLUDE']}/Common.tpl"/>
2
3<div class="eventWrapper" itemscope itemtype="http://schema.org/Event">
4    <div class="lectureEventHeader">
5        <div class="lectureCategory">${category}</div>
6        <h1 itemprop="name">${conf.getTitle()}</h1>
7
8        % if conf.getChairList() or conf.getChairmanText():
9        <h2>by ${common.renderUsers(conf.getChairList(), unformatted=conf.getChairmanText())}</h2>
10        % endif
11
12        <div class="details">
13            ${common.renderEventTime(startDate, endDate, timezone)}
14
15            % if getLocationInfo(conf) != ('', '', ''):
16                <br />at ${common.renderLocation(conf, span='headerRoomLink')}
17                <br /> <em>${conf.getLocation().getAddress()}</em>
18            % endif
19        </div>
20
21        <%include file="${INCLUDE}/ManageButton.tpl"
22                  args="item=conf, alignRight=True, manageLink=True, bgColor='white'"/>
23    </div>
24
25    <div class="lectureEventBody">
26        <%include file="${INCLUDE}/EventDetails.tpl"/>
27    </div>
28</div>
Note: See TracBrowser for help on using the repository browser.