Spaces:
Running
Running
Update templates/interface.html
Browse files- templates/interface.html +7 -6
templates/interface.html
CHANGED
@@ -17,12 +17,13 @@
|
|
17 |
|
18 |
</div>
|
19 |
<div>
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
|
|
26 |
|
27 |
|
28 |
<!-- Select a model -->
|
|
|
17 |
|
18 |
</div>
|
19 |
<div>
|
20 |
+
<label for="selection">Select Language:</label>
|
21 |
+
<select id="speaker" name="speaker">
|
22 |
+
{% for option in data.speaker_options %}
|
23 |
+
<option value="{{ option }}" {% if option == selected_speaker %}selected{% endif %}>{{ option }}</option>
|
24 |
+
{% endfor %}
|
25 |
+
</select>
|
26 |
+
</div>
|
27 |
|
28 |
|
29 |
<!-- Select a model -->
|