From 885c03c514621049a804df80acde35e999fa1d56 Mon Sep 17 00:00:00 2001 From: Andreas Kotowicz Date: Fri, 9 Dec 2011 17:20:32 +0100 Subject: [PATCH] don't translate field errors - they should be in correct language by default. --- helpdesk/templates/helpdesk/create_ticket.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpdesk/templates/helpdesk/create_ticket.html b/helpdesk/templates/helpdesk/create_ticket.html index c161170a..06f29dd3 100644 --- a/helpdesk/templates/helpdesk/create_ticket.html +++ b/helpdesk/templates/helpdesk/create_ticket.html @@ -16,7 +16,7 @@ {% else %}
{% if not field.field.required %} {% trans "(Optional)" %}{% endif %}
{{ field }}
- {% if field.errors %}
{% trans field.errors %}
{% endif %} + {% if field.errors %}
{{ field.errors }}
{% endif %} {% if field.help_text %}
{% trans field.help_text %}
{% endif %} {% endif %} {% endfor %}