Merge pull request #42 from ComputerScienceHouse/default-pool

Set default creation pool to current user
This commit is contained in:
Galen Guyer 2020-09-25 21:26:16 -04:00 committed by GitHub
commit 76c34a0bb3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,7 +72,7 @@
<label for="user" class="pull-left">User</label>
<select name="user" id="user" class="form-control">
{% for pool in pools %}
<option value="{{ pool }}">{{ pool }}</option>
<option value="{{ pool }}" {{ "selected" if user.name == pool else "" }}>{{ pool }}</option>
{% endfor %}
</select>
</div>