Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
Revert admin sidebar localization
Browse files Browse the repository at this point in the history
  • Loading branch information
nashe committed Aug 3, 2016
1 parent 56275d8 commit 064b88c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions templates/team-base.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@
<form id="status-knob" action="set-status.json">
<select name="status">
<option {{ 'selected' if team.is_approved == None else '' }}
value="unreviewed">{{ _("Under Review") }}</option>
value="unreviewed">Under Review</option>
<option {{ 'selected' if team.is_approved == False else '' }}
value="rejected">{{ _("Rejected") }}</option>
value="rejected">Rejected</option>
<option {{ 'selected' if team.is_approved == True else '' }}
value="approved">{{ _("Approved") }}</option>
value="approved">Approved</option>
</select>
<br>
<br>
<button type="submit">{{ _("Set Status") }}</button>
<button type="submit">Set Status</button>
<br>
<br>
</form>
Expand Down

0 comments on commit 064b88c

Please sign in to comment.