aboutsummaryrefslogtreecommitdiffstats
path: root/shareit/templates/upload.html
blob: 5d9fb311604a4e52127ac95ba1dfb625b4bbad0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{% extends "base.html" %}
{% block title
%}{% if lang == 'en'
    %}Correctly uploaded{%
else
    %}Téléchargé correctement{%
endif %}{% endblock %}
{% block content %}
{% if lang == 'en' %}
<p>
    Your file was correctly uploaded. <br />
    It will be available for 10 days. <br />
    To share it with others, use this link:
    <a href="{{link}}" >{{link}}</a> <br />
    You can check the integrity of your download with the md5 hash: {{digest}}
</p>
<p>
    <a href="/">Go back to the upload form</a>
</p>
{% else %}
<p>
    Votre fichier a correctement été enregistré sur le serveur. <br />
    Il sera disponible pendant 10 jours. <br />
    Pour le partager avec d'autres personnes, utilisez ce lien:
    <a href="{{link}}" >{{link}}</a> <br />
    Vous pouvez vérifier l'intégrité de votre téléchargement via la somme md5
    suivante: {{digest}}
</p>
<p>
    <a href="/">Revenir sur le formulaire d'envoi de fichiers</a>
</p>
{% endif %}
{% endblock %}