bornhack-website/program/templates/speaker_detail.html

22 lines
318 B
HTML
Raw Normal View History

2016-08-08 17:45:32 +00:00
{% extends 'base.html' %}
{% load commonmark %}
{% block content %}
<h3>{{ speaker.name }}</h3>
{{ speaker.biography|commonmark }}
<hr />
{% if speaker.events.exists %}
{% for event in speaker.events.all %}
<h3>{{ event.title }}</h3>
{{ event.abstract|commonmark }}
{% endfor %}
{% endif %}
{% endblock %}