diff options
| author | Sarah Conway Schnurr | 2019-09-13 20:51:29 +0000 |
|---|---|---|
| committer | Sarah Conway Schnurr | 2019-09-13 20:51:29 +0000 |
| commit | 7528ddd1215639a219e4923a7fa12d4f4f8b9497 (patch) | |
| tree | 23d3d18c5fec5da1c58f5cebd1b21b2773b9e092 | |
| parent | 6fab5b405a0970fb858804fad0862d5392c209ce (diff) | |
| parent | 18973a3368e9d7f929476a297838fc682fd6a05b (diff) | |
| -rw-r--r-- | templates/confreg/session.html | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/templates/confreg/session.html b/templates/confreg/session.html index 91dc266..6578f63 100644 --- a/templates/confreg/session.html +++ b/templates/confreg/session.html @@ -22,6 +22,18 @@ {{session.abstract|markdown}} </p> +{%if slides%} +<h2>Slides</h2> +<p> + The following slides have been made available for this session: +</p> +<ul> +{%for sl in slides%} +<li><a href="http://git.postgresql.org/%7B%if%20sl.url%%7D%7B%7Bsl.url%7D%7D%7B%else%%7D/events/%7B%7Bconference.urlname%7D%7D/sessions/session/%7B%7Bsession.id%7D%7D/slides/%7B%7Bsl.id%7D%7D/%7B%7Bsl.name%7D%7D%7B%endif%%7D">{{sl.name}}</a></li> +{%endfor%} +</ul> +{%endif%} + {%for speaker in session.speaker.all()%} {%if loop.first%} <h2>Speaker</h2> @@ -30,4 +42,3 @@ {%endfor%} {%endblock%} - |
