28 lines
812 B
HTML
28 lines
812 B
HTML
<!DOCTYPE html>
|
|
{% extends 'head.html' %}
|
|
{% block content %}
|
|
<h4>Hello! Please enter Group Names below.</h4>
|
|
{% if error %}
|
|
<p class=error><strong> </strong>{{ error }}</p>
|
|
{% endif %}
|
|
|
|
<p><label for="Bulk Add Groups"> Please select the appropriate options below.</label></p>
|
|
<form action="{{ url_for("bulk_add_groups")}}" method="post">
|
|
<p>Please enter a comma separated list of Groups you'd like to add</p>
|
|
<textarea id="groups" name="groups" rows="4" cols="50"></textarea>
|
|
<p></p>
|
|
<input type="submit" value="Submit"></input>
|
|
</form>
|
|
|
|
<h4>Here is a list of your client's Groups.</h4>
|
|
<a id="download" href="/downloadcsv">Click here to download as CSV.</a>
|
|
</div>
|
|
<div class="panda-table">
|
|
{{ table | safe }}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
{% endblock %}
|
|
|
|
|