This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
cut-publik-theme/templates/fargo/oauth2/authorize.html

16 lines
445 B
HTML

{% extends "fargo/base.html" %}
{% load render_table from django_tables2 %}
{% load i18n %}
{% block content %}
<div id="fargo-oauth2-authorize">
<h2>Choix du document :</h2>
<form method="post" enctype="multipart/form-data">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" name="submit" value="{% trans "Choose" %}">
<input type="submit" name="cancel" value="{% trans "Cancel" %}">
</form>
</div>
{% endblock %}