Demo

Probiere ClanSphere aus und teste daran herum. Demo

Nopaste Service - events/list.tpl
Miraculix

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<table class="forum" style="width: {page:width}" cellpadding="0" cellspacing="{page:cellspacing}">
 <tr>
  <td class="rightb">{head:pages}</td>
 </tr>
</table>
<table class="forum" style="width: {page:width}" cellpadding="0" cellspacing="{page:cellspacing}">
 <tr>
  <td class="headb">Upcoming Shows</td>
 </tr>
</table>
<table class="forum" style="width: {page:width}" cellpadding="0" cellspacing="{page:cellspacing}">
{loop:events_upcoming}
<tr>
  <td class="leftc" style="width:90px{if:cancel};text-decoration: line-through{stop:cancel}">{events_upcoming:time}</td>
  <td class="leftb"{if:cancel} style="text-decoration: line-through"{stop:cancel}>{events_upcoming:events_venue} - {events_upcoming:events_name}</td>
  <td class="rightc" style="width:35px">{if:flyer}<a href="{events_upcoming:flyer}" target="_blank" rel="lightbox">Flyer</a>{stop:flyer}</td>
  <td class="rightc" style="width:35px">{if:pics}<a href="{events_upcoming:url}">Pics</a>{stop:pics}</td>
 </tr>{stop:events_upcoming}
</table>
<br />
<table class="forum" style="width: {page:width}" cellpadding="0" cellspacing="{page:cellspacing}">
 <tr>
  <td class="headb">Past Shows</td>
 </tr>
</table>
<table class="forum" style="width: {page:width}" cellpadding="0" cellspacing="{page:cellspacing}">
{loop:years}
{if:year_event}
 <tr>
  <td class="headb" colspan="4">{years:year}</td>
 </tr>
{loop:events}
 <tr>
  <td class="leftc" style="width:90px{if:cancel};text-decoration: line-through{stop:cancel}">{events:time}</td>
  <td class="leftb"{if:cancel} style="text-decoration: line-through"{stop:cancel}>{events:events_venue} - {events:events_name}</td>
  <td class="rightc" style="width:35px">{if:flyer}<a href="{events:flyer}" target="_blank" rel="lightbox">Flyer</a>{stop:flyer}</td>
  <td class="rightc" style="width:35px">{if:pics}<a href="{events:url}">Pics</a>{stop:pics}</td>
 </tr>
{stop:events}
{stop:year_event}
{stop:years}
</table>