Add synthesis template links

This commit is contained in:
Yohann D'ANELLO 2021-04-07 15:27:48 +02:00
parent 3bd6d2e647
commit ef2911ab07
Signed by: ynerant
GPG Key ID: 3A75C55819C8CF85
1 changed files with 6 additions and 1 deletions

View File

@ -1,10 +1,15 @@
{% extends "base.html" %}
{% load crispy_forms_filters i18n %}
{% load crispy_forms_filters i18n static %}
{% block content %}
<form method="post" enctype="multipart/form-data">
<div id="form-content">
<div class="alert alert-info">
{% trans "Templates:" %}
<a class="alert-link" href="{% static "Fiche_synthèse.pdf" %}"> PDF</a> -
<a class="alert-link" href="{% static "Fiche_synthèse.tex" %}"> TEX</a>
</div>
{% csrf_token %}
{{ form|crispy }}
</div>