+
Navigation
Find an Officer
diff --git a/OpenOversight/app/templates/browse.html b/OpenOversight/app/templates/browse.html
index 6935887de..c655304d2 100644
--- a/OpenOversight/app/templates/browse.html
+++ b/OpenOversight/app/templates/browse.html
@@ -12,6 +12,12 @@
Browse a Department
diff --git a/OpenOversight/app/templates/description_delete.html b/OpenOversight/app/templates/description_delete.html
new file mode 100644
index 000000000..1a33ff981
--- /dev/null
+++ b/OpenOversight/app/templates/description_delete.html
@@ -0,0 +1,22 @@
+{% extends "base.html" %}
+
+{% block content %}
+
+
+
+
+ Are you sure you want to delete this description?
+ This cannot be undone.
+
+
+
+{% endblock content %}
diff --git a/OpenOversight/app/templates/description_edit.html b/OpenOversight/app/templates/description_edit.html
new file mode 100644
index 000000000..dc4aea945
--- /dev/null
+++ b/OpenOversight/app/templates/description_edit.html
@@ -0,0 +1,18 @@
+{% extends "form.html" %}
+{% import "bootstrap/wtf.html" as wtf %}
+
+
+{% block page_title %}
+ Update Description
+{% endblock page_title %}
+
+
+{% block form %}
+ {% if form.errors %}
+ {% set post_url=url_for('main.description_api', officer_id=obj.officer_id, obj_id=obj.id) %}
+ {% else %}
+ {% set post_url="{}/edit".format(url_for('main.description_api', officer_id=obj.officer_id, obj_id=obj.id)) %}
+ {% endif %}
+ {{ wtf.quick_form(form, action=post_url, method='post', button_map={'submit':'primary'}) }}
+
+{% endblock form %}
diff --git a/OpenOversight/app/templates/description_new.html b/OpenOversight/app/templates/description_new.html
new file mode 100644
index 000000000..f74dec3f5
--- /dev/null
+++ b/OpenOversight/app/templates/description_new.html
@@ -0,0 +1,14 @@
+{% extends 'form.html' %}
+
+{% block page_title %}
+ New Description
+{% endblock page_title %}
+
+{% block form %}
+
For officer with OOID {{ form.officer_id.data }}.
{{form.description}}
+ {{ super() }}
+{% endblock form %}
+
+{% block js_footer %}
+
+{% endblock %}
diff --git a/OpenOversight/app/templates/edit_officer.html b/OpenOversight/app/templates/edit_officer.html
index c268be541..a64d62f1f 100644
--- a/OpenOversight/app/templates/edit_officer.html
+++ b/OpenOversight/app/templates/edit_officer.html
@@ -14,11 +14,13 @@
Edit Officer
{{ wtf.form_errors(form, hiddens="only") }}
{{ wtf.form_field(form.first_name, autofocus="autofocus") }}
{{ wtf.form_field(form.middle_initial) }}
+ {{ wtf.form_field(form.suffix) }}
{{ wtf.form_field(form.last_name) }}
{{ wtf.form_field(form.race) }}
{{ wtf.form_field(form.gender) }}
{{ wtf.form_field(form.employment_date) }}
{{ wtf.form_field(form.birth_year) }}
+ {{ wtf.form_field(form.unique_internal_identifier) }}
{{ wtf.form_field(form.department) }}
{% include "partials/links_subform.html" %}
{{ wtf.form_field(form.submit, id="submit", button_map={'submit':'primary'}) }}
diff --git a/OpenOversight/app/templates/gallery.html b/OpenOversight/app/templates/gallery.html
index ef3956351..61d8ca280 100644
--- a/OpenOversight/app/templates/gallery.html
+++ b/OpenOversight/app/templates/gallery.html
@@ -37,9 +37,7 @@