Spaces:
Running
Running
Update templates/interface.html
Browse files- templates/interface.html +5 -1
templates/interface.html
CHANGED
@@ -10,7 +10,11 @@
|
|
10 |
<body>
|
11 |
<div>
|
12 |
<label for="selection">Select speaker:</label>
|
13 |
-
<select id="
|
|
|
|
|
|
|
|
|
14 |
<button id="load_btn">Load it!</button>
|
15 |
</div>
|
16 |
|
|
|
10 |
<body>
|
11 |
<div>
|
12 |
<label for="selection">Select speaker:</label>
|
13 |
+
<select id="speaker" name="speaker">
|
14 |
+
{% for option in data.speaker_options %}
|
15 |
+
<option {% if option == data.default_speaker %}selected{% endif %}>{{ option }}</option>
|
16 |
+
{% endfor %}
|
17 |
+
</select>
|
18 |
<button id="load_btn">Load it!</button>
|
19 |
</div>
|
20 |
|