diff --git a/mediagoblin/templates/mediagoblin/utils/wtforms.html b/mediagoblin/templates/mediagoblin/utils/wtforms.html
index 9adf8e53..1d2f8619 100644
--- a/mediagoblin/templates/mediagoblin/utils/wtforms.html
+++ b/mediagoblin/templates/mediagoblin/utils/wtforms.html
@@ -16,23 +16,47 @@
# along with this program. If not, see .
#}
+{# Generically render a field #}
+{% macro render_field_div(field) %}
+
+{%- endmacro %}
+
+{# Generically render a textarea
+ # ... mostly the same thing except it includes rows and cols #}
+{% macro render_textarea_div(field, rows=8, cols=20) %}
+
+{%- endmacro %}
+
{# Auto-render a form as a series of divs #}
{% macro render_divs(form) -%}
{% for field in form %}
-
+ {{ render_field_div(field) }}
{% endfor %}
{%- endmacro %}