summaryrefslogtreecommitdiff
path: root/templates/conference/tutorials.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/conference/tutorials.html')
-rw-r--r--templates/conference/tutorials.html18
1 files changed, 11 insertions, 7 deletions
diff --git a/templates/conference/tutorials.html b/templates/conference/tutorials.html
index 81afba4..52d4be1 100644
--- a/templates/conference/tutorials.html
+++ b/templates/conference/tutorials.html
@@ -1,15 +1,19 @@
{% extends "base.html" %}
{% block content %}
-
-
-<h3>List of Tutorials</h3>
+<h2 align="center"><u>List of Tutorials</u></h2> <br>
<table>
-<th>Title
-<th>Speaker
+<th>Title</th>
+<th>Speaker</th>
{% for tutorial in tutorials %}
-<tr><td><a href="{% url 'conference:details' tutorial.id %}">{{ tutorial.title }}<td>{{ tutorial.speaker }}
+<tr>
+ <td>
+ <a href="{% url 'conference:details' tutorial.id %}">{{ tutorial.title }}</a>
+ </td>
+ <td>
+ {{ tutorial.speaker }}
+ </td>
+</tr>
{% endfor %}
</table>
{% endblock %}
-