9 lines
252 B
HTML
9 lines
252 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}file {{ file.get_original_filename }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{{ file }}</h1>
|
|
<h1>{{ token.token }}</h1>
|
|
<h2>{% url 'files:file_download' file.short_id token.token %}</h2>
|
|
{% endblock %}
|