Files
StorefrontUtility/app/templates/index.html
Dan Dembinski bde35b86ac 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.
2019-06-28 15:53:00 -04:00

23 lines
490 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
{% for x in ClientName %}
{{ 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>