diff --git a/mediagoblin/templates/mediagoblin/utils/wtforms.html b/mediagoblin/templates/mediagoblin/utils/wtforms.html
index 3b6cff15..2639522a 100644
--- a/mediagoblin/templates/mediagoblin/utils/wtforms.html
+++ b/mediagoblin/templates/mediagoblin/utils/wtforms.html
@@ -23,30 +23,7 @@
{% if field.description -%}
{{ _(field.description) }}
{%- endif %}
- {% if field.type == "TextAreaField" %}
- {{ field(rows=8, cols=20) }}
- {% else %}
- {{ field }}
- {% endif %}
- {%- if field.errors -%}
- {% for error in field.errors %}
-
- {{ error }}
-
- {% endfor %}
- {%- endif %}
-
-{%- endmacro %}
-
-{# Generically render a textarea
- # ... mostly the same thing except it includes rows and cols #}
-{% macro render_textarea_div(field, rows=8, cols=20) %}
-