{% extends 'base.html' %} {% load i18n static django_bootstrap5 %} {% block content_title %}

{{ title }}

{% endblock %} {% block content %} {% include 'xform_howto.html' %}

{% blocktrans %}If you have a correct xlsx (XForm) file you can now Upload it{% endblocktrans %}

{% if uploaded_file_url %}

{% trans "Currently" %} {{ uploaded_file_url }}

{% endif %}
{% csrf_token %} {% bootstrap_form form layout='horizontal' %}
{% if pk %} {% trans "Back" %} {% else %} {% trans "Back" %} {% endif %}
{% endblock %} {% block js %} {{ block.super }} {% endblock js %}