hello-world-walkthroughipv6v0.98-seriesv0.98.2v0.98.3v0.98b2v0.99v1.0v1.1
|
Last change
on this file since c0de5a was
c0de5a,
checked in by Marius Damarackas <marius.damarackas@…>, 2 years ago
|
|
[FIX] Trimmed trailing whitespace in templates
- also fixed the conversion script by adding .rstrip()
|
-
Property mode set to
100644
|
|
File size:
977 bytes
|
| Line | |
|---|
| 1 | % if not OngoingBookings and not ScheduledBookings: |
|---|
| 2 | <div class="collaborationDisplayTitle">${ _("All video service events already finished.") }</div> |
|---|
| 3 | % endif |
|---|
| 4 | |
|---|
| 5 | % if OngoingBookings: |
|---|
| 6 | <div class="groupTitleNoBorder collaborationDisplayTitle" style="margin-bottom: 5px;">Ongoing Today:</div> |
|---|
| 7 | % endif |
|---|
| 8 | |
|---|
| 9 | % for booking in OngoingBookings: |
|---|
| 10 | <%include file="BookingDisplay.tpl" args="Booking = booking, Kind = 'ongoing', Timezone = Timezone"/> |
|---|
| 11 | % endfor |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | % if ScheduledBookings: |
|---|
| 15 | <div class="groupTitleNoBorder collaborationDisplayTitle">Upcoming:</div> |
|---|
| 16 | % endif |
|---|
| 17 | |
|---|
| 18 | % for date, bookings in ScheduledBookings: |
|---|
| 19 | <div class="collaborationDisplayDateGroup"> |
|---|
| 20 | <div class="groupTitleSmallNoBackground" style="padding-left: 5px;">Scheduled for ${ formatDate (date, format = "%A %d/%m/%Y") }</div> |
|---|
| 21 | % for b in bookings: |
|---|
| 22 | <%include file="BookingDisplay.tpl" args="Booking = b, Kind = 'scheduled', Timezone = Timezone"/> |
|---|
| 23 | % endfor |
|---|
| 24 | </div> |
|---|
| 25 | % endfor |
|---|
Note: See
TracBrowser
for help on using the repository browser.