{% extends request.current_app_base_template %} {% load bootstrap3 %} {% load i18n %} {% block content %}
{% if 'upload' in input_methods %}
{% csrf_token %} {% bootstrap_form forms.upload_form %} {% buttons %} {% endbuttons %}
{% endif %} {% if 'url' in input_methods %}
{% csrf_token %} {% bootstrap_form forms.url_form %} {% buttons %} {% endbuttons %}
{% endif %} {% if 'text' in input_methods %}
{% csrf_token %} {% bootstrap_form forms.text_form %} {% buttons %} {% endbuttons %}
{% endif %}
{% endblock %} {% block extrafooterscript %} {% endblock %}