Index adds XML client names to a drop down. Added a pretty submit button that doesn't do anything.
Started reworking main.py. Broke loadMenu out into LoadClient to get just client names, and ClientConfig, which will load xml for only the selected client.
This commit is contained in:
@@ -6,7 +6,18 @@
|
||||
</head>
|
||||
<body>
|
||||
{% for x in ClientName %}
|
||||
{{ ClientName }} <br>
|
||||
{{ ClientName[loop.index0] }} <br>
|
||||
{% endfor %}
|
||||
|
||||
<br><br>
|
||||
<select name = "SelectedClient">
|
||||
{% for x in ClientName %}
|
||||
<option value = "{{ SelectedClient }}" > {{ ClientName[loop.index0] }} </option>
|
||||
{% endfor %}
|
||||
</select>
|
||||
<br>
|
||||
<input type="submit">
|
||||
<br><br>
|
||||
{{ SelectedClient }}
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user