13 lines
239 B
HTML
13 lines
239 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<h2>{{ title }}</h2>
|
|
<h2>{{ subject }}</h2>
|
|
<br/>
|
|
<p>Start: {{ start }}</p>
|
|
<p>Ende: {{ end }}</p>
|
|
<p>{{ content |safe }}</p>
|
|
<p>{{ attendees }}</p>
|
|
<p>{{ location |safe }}</p>
|
|
|
|
{% endblock %} |