{% extends form_template %} {% load forms_tags %} {% load base_filters %} {% block title %}{% blocktrans with t=entry.form.title %}Entry - {{ t }}{% endblocktrans %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block content %}

{{ entry.form.title }}

{% forms_entry_options request.user entry %}
{% for field in entry.entry_fields %} {% if field.field.field_type == 'FileField' %}

{{ field.field.label }}
{{ field.value|basename }}

{% else %}

{{ field.field.label }}
{{ field.value }}

{% endif %} {% endfor %} {% if form.custom_payment %} {% if entry.pricing %}

{{ entry.form.pricing_name }}{% if entry.pricing.label %} - {{ entry.pricing.label }}{% endif %}
{% if entry.pricing.price %} {{ SITE_GLOBAL_CURRENCYSYMBOL }}{{ entry.pricing.price }} {% else %} {{ SITE_GLOBAL_CURRENCYSYMBOL }}{{ entry.custom_price }} {% endif %}

{% endif %} {% endif %}

{% trans 'Entry Time' %}
{{ entry.entry_time }}

{% if entry.creator %}

{% trans 'Created by' %}
{{ entry.creator.username }}

{% endif %} {% if entry.entry_path %}

{% trans 'Entry Path' %}
{{ entry.entry_path }}

{% endif %}
{% endblock %}