Skip to content

Commit

Permalink
Style edits in admin.html, add printer emoji
Browse files Browse the repository at this point in the history
  • Loading branch information
dexw25 committed May 10, 2018
1 parent 722cde9 commit e4e2922
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions templates/admin.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ <h2>Home page content</h2>
<h2>Print All ID Cards</h2>
<form action=/cards/all>
<h3>Select semester for which to generate ID cards:</h3>
<select name="semester" size="{{ semesters|length }}">
<select name="semester">
{% for semester in semesters %}
<option value={{ semester }}{% if semester == current_semester%} selected="selected"{%endif%}>{{ semester }}</option>
<option value={{ semester }}{% if semester == current_semester %} selected="selected"{% endif %}>{{ semester }}</option>
{% endfor %}
</select>
<br />
<br />
<button type="submit">Print</button>
<button type="submit">&#x1f5b6; Print</button>
<br />
<br />
</form>
Expand Down

0 comments on commit e4e2922

Please sign in to comment.