Skip to content

Commit

Permalink
Merge pull request lucyparsons#411 from lucyparsons/develop
Browse files Browse the repository at this point in the history
Release 0.3.2
  • Loading branch information
redshiftzero committed Mar 22, 2018
2 parents 83f1272 + b712ad9 commit 88d84dd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions OpenOversight/app/templates/input_find_ooid.html
Expand Up @@ -7,21 +7,21 @@
<h2>Find an Officer's OpenOversight ID</h2>
</div>

<p>Use the following form to put in the details you can see in the image:</p>
<p>Use the following form to put in the details you can see in the image. (It's okay if you can only see a partial name or badge number.)</p>
<form action="{{ url_for('main.get_tagger_gallery') }}" method="post">
{{ form.hidden_tag() }}
<h4>Department: {{ form.dept }}</h4>
{% for error in form.dept.errors %}
<p><span style="color: red;">[{{ error }}]</span></p>
{% endfor %}

<h4>What is visible from the officer's name tag?</h4>
<h4>What part, if any, of the officer's last name is visible?</h4>
{{ form.name }}
{% for error in form.name.errors %}
<p><span style="color: red;">[{{ error }}]</span></p>
{% endfor %}

<h4>What is the officer's last name? (It may be visible on the name tag)</h4>
<h4>What part, if any, of the officer's badge number is visible?</h4>
{{ form.badge }}
{% for error in form.badge.errors %}
<p><span style="color: red;">[{{ error }}]</span></p>
Expand Down

0 comments on commit 88d84dd

Please sign in to comment.