7 lines
274 B
HTML
7 lines
274 B
HTML
{% extends "base_title.html" %}
|
|
|
|
{% block realcontent %}
|
|
<h2>{{ spectacle }}</h2>
|
|
<textarea style="width: 100%; height: 100px; margin-top: 10px;">
|
|
{% for attrib in spectacle.attribues.all %}{{ attrib.participant.user.email }}, {% endfor %}</textarea>
|
|
{% endblock %}
|