{% extends "admin/base_site.html" %} {% load i18n %} {% load static %} {% block extrastyle %} {% endblock %} {% block content %}
{% if errors %}

{% trans 'The resource dif not validate validated successfully. The following errors were found:' %}

    {% for error in errors %}
    {{ error }}
    {% endfor %}
    
{% else %}

{% trans 'The resource validated successfully.' %}

{% endif %}
Back {% endblock %}