-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathview.html
More file actions
42 lines (41 loc) · 881 Bytes
/
view.html
File metadata and controls
42 lines (41 loc) · 881 Bytes
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
<html>
<body>
<h1>Title</h1>
<a href="/gistr.ics">Get ICS</a>
<h2>Result:</h2>
<table>
<tr>
<th>date</th>
<th>hours</th>
<th>lenght</th>
<th>cours</th>
<th>trainees</th>
<th>professor</th>
<th>room</th>
</tr>
{% for event in events %}
{% if event %}
<tr>
<td>{{ event.0 }}</td>
<td>{{ event.1 }}</td>
<td>{{ event.2 }}</td>
<td>{{ event.3 }}</td>
<td>{{ event.4 }}</td>
<td>{{ event.5 }}</td>
<td>{{ event.6 }}</td>
</tr>
{% endif %}
{% endfor %}
</table>
<h2>other:</h2>
<pre>status: {{ status }}</pre>
<h2>header:</h2>
<pre>{{ header }}</pre>
<h2>content:</h2>
<pre>{{ content }}</pre>
<h2>parser:</h2>
<pre>{{ parseres }}</pre>
<h2>Session ID:</h2>
<pre>{{ id }}</pre>
</body>
</html>