15 lines
309 B
HTML
15 lines
309 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Split speaker – Conference archive{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ item.name }}</h1>
|
|
|
|
<form method="POST">
|
|
<div><textarea name="names" rows="5" cols="60">{{ item.name }}</textarea></div>
|
|
<button>split</button>
|
|
</form>
|
|
|
|
|
|
{% endblock %}
|