1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% extends "layout.html" %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
<div class="container-fluid main">
<div class="row">
<div class="col">
<h1>{{ bag('translation', this.alt, 'performance') }}</h1>
<h2>{{ bag('translation', this.alt, 'title') }}: {{ this.title }}</h2>
<h3>Start: {{ this.date_start|dateformat('Y-MM-dd') }}</h3>
<h3>{{ bag('translation', this.alt, 'end') }}: {{ this.date_end|dateformat('Y-MM-dd') }}</h3>
<h3>{{ bag('translation', this.alt, 'venue') }}: {{ this.venue }} </h3>
<h3>{{ bag('translation', this.alt, 'place') }}: {{ this.place }} </h3>
<h3>{{ bag('translation', this.alt, 'country') }}: {{ this.country }} </h3>
<h3>{{ bag('translation', this.alt, 'website') }}: <a href="{{ this.url }}">{{this.url}}</a> </h3>
<h3>{{ bag('translation', this.alt, 'comment') }}: {{ this.comment }} </h3>
{{ this.info }}
</div>
</div>
</div>
{% endblock %}
|