diff --git a/app/templates/base/_formhelpers.html b/app/templates/base/_formhelpers.html
index 7f492f6..d59aafc 100644
--- a/app/templates/base/_formhelpers.html
+++ b/app/templates/base/_formhelpers.html
@@ -11,10 +11,10 @@
{% endmacro %}
-{% macro render_field(field) %}
+{% macro render_field(field, disabled=False) %}
{{ field.label }}
- {{ field(class_="form-control input-s", size=32) }}
+ {{ field(class_="form-control input-s", disabled=disabled, size=32) }}
{% if field.errors %}
diff --git a/app/templates/orchard/annotate.html b/app/templates/orchard/annotate.html
index 45bd6ab..e981f6d 100644
--- a/app/templates/orchard/annotate.html
+++ b/app/templates/orchard/annotate.html
@@ -24,7 +24,7 @@