Skip to content

Commit

Permalink
fix bug with undo restock
Browse files Browse the repository at this point in the history
  • Loading branch information
bradjc committed Sep 4, 2016
1 parent 0f4b084 commit 1324e26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chezbetty/templates/admin/restock.jinja2
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
Who paid for this restock:
<select class="form-control" id="restock-reimbursee" name="restock-reimbursee">
{% for reimbursee in reimbursees %}
<option value="{{ reimbursee.id }}" {% if reimbursee_selected == reimbursee.id %}selected="selected"{% endif %}>{{ reimbursee.name }}</option>
<option value="{{ reimbursee.id }}" {% if reimbursee_selected|string == reimbursee.id|string %}selected="selected"{% endif %}>{{ reimbursee.name }}</option>
{% endfor %}
<option value="none" {% if reimbursee_selected == 'none' %}selected="selected"{% endif %}>No one, paid directly from Betty</option>
</select>
Expand Down

0 comments on commit 1324e26

Please sign in to comment.