mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-21 16:21:32 +02:00
14 lines
331 B
HTML
14 lines
331 B
HTML
{% extends "layouts/base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}{% translate 'Import Profiles' %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container p-3">
|
|
<form method="post" action="{% url 'export_form' %}" id="export-form">
|
|
{% crispy form %}
|
|
</form>
|
|
</div>
|
|
{% endblock %}
|