{% extends base_template %} {% load i18n %} {% block content %}

{{ schema.name }} v{{ schema.version }}

{% trans "Edit" %} {% trans "Submit Response" %} {% trans "Delete" %}
{% if schema.description %}

{{ schema.description }}

{% endif %}
{% trans "Status" %}
{% if schema.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %}
{% trans "Pages" %}
{{ schema.page_count }}
{% trans "Created" %}
{{ schema.created_date|date:"Y-m-d H:i" }}

{% trans "Recent Responses" %}

{% if recent_responses %}
{% for resp in recent_responses %} {% endfor %}
{% trans "ID" %} {% trans "Submitted by" %} {% trans "Date" %} {% trans "Actions" %}
{{ resp.id|truncatechars:13 }} {{ resp.created_by|default:"-" }} {{ resp.created_date|date:"Y-m-d H:i" }} {% trans "View" %}
{% trans "View All Responses" %} {% else %}

{% trans "No responses yet." %}

{% endif %}
{% endblock %}