datatracker/ietf/secr/templates/telechat/roll_call.html

23 lines
610 B
HTML

{% extends "telechat/base_telechat.html" %}
{% block breadcrumbs %}{{ block.super }}
» {{ date }}
{% endblock %}
{% block subsection %}
<div id="telechat-content">
<span class="telechat-warn"><h3>This feature is pending</h3></span>
<h3>Roll Call</h3>
<br>
<form method="post">{% csrf_token %}
{% for person in people %}
<input type="checkbox" name="attendee" value="{{ person.id }}" checked> {{ person.name }}<br>
{% endfor %}
<button type="submit">Update</button>
</form>
</div>
{% endblock %}