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:
Dan Dembinski
2019-06-28 15:53:00 -04:00
parent ecb9757fb5
commit bde35b86ac
2 changed files with 147 additions and 124 deletions

View File

@@ -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>