summaryrefslogtreecommitdiff
path: root/templates/performance.html
blob: 6dff70ef25bf5c8bee4c8bea03c702186041e9f1 (plain)
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
{% extends "layout.html" %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}

<div class="workdescription">
	<table style="width:100%">
		<tr>
			<th><h1>{{ bag('translation', this.alt, 'performance') }}</h1></th>
		</tr>		
		<tr>
			<td class="work">{{ bag('translation', this.alt, 'title') }}: {{ this.title }}</td>
		</tr>
		<tr>
			<td class="work">Start: {{ this.date_start|dateformat('Y-MM-dd') }}</td>
		</tr>
		<tr>
			<td class="work">{{ bag('translation', this.alt, 'end') }}: {{ this.date_end|dateformat('Y-MM-dd') }}</td>
		</tr>
		<tr>
			<td class="work">{{ bag('translation', this.alt, 'venue') }}: {{ this.venue }}</td>
		</tr>
		<tr>
			<td class="work">{{ bag('translation', this.alt, 'place') }}: {{ this.place }}</td>
		</tr>
		<tr>
			<td class="work">{{ bag('translation', this.alt, 'country') }}: {{ this.country }}</td>
		</tr>
		{% if this.tfwebsite == True %}<tr>
			<td class="work">{{bag('translation', this.alt, 'website')}}: <a href="{{ this.website }}">{{this.website}}</a></td>
		</tr>{% endif %}
		{% if this.comment == true %}<tr>
			<td class="work">{{ this.comment }}</td>
		</tr>{% endif %}
	</table>
</div>
<div class="pagework">
	<div class="pageinner">
		{{ this.info }}
    </div>
</div>
{% endblock %}