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
|
{% extends "layout.html" %}
{% block title %}{{ this.title }}{% endblock %}
{% block body %}
<div class="workdescription">
<table style="width:100%">
<tr>
<th><h1>{{ bag('translation', this.alt, 'lecture') }}</h1></th>
</tr>
<tr>
<td class="work">{{ bag('translation', this.alt, 'title') }}: {{ this.title }}</td>
</tr>
<tr>
<td class="work">{{ bag('translation', this.alt, 'date') }}: {{ this.date|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 %}
|