{% extends "feature_vote/base.html" %}{% load comments %} {% load i18n %} {% block content %}
{% if submitted %}

{% trans "Thank you for submitting a feature request! It is pending moderation, and should appear shortly." %}

{% else %}

{% blocktrans %}Do you have something you'd like to see added to {{ site_name }}?{% endblocktrans %}

{% blocktrans %}You can vote or comment on existing suggestions, or use the form at the bottom of the page to add a new suggestion.{% endblocktrans %}

{% endif %}

{% trans "Current suggestions" %}

{% if features %} {% else %}

{% trans "There are no features to vote on yet." %}

{% endif %}

{% trans "Suggest a feature" %}

{% csrf_token %}
{{ form.user_name.label_tag }}:
{{ form.user_name.errors }}{{ form.user_name }}
{{ form.user_email.label_tag }}:
{{ form.user_email.errors }}{{ form.user_email }}
{{ form.title.label_tag }}:
{{ form.title.errors }}{{ form.title }}
{{ form.description.label_tag }}:
{{ form.description.errors }}{{ form.description }}

{% endblock %}