13 lines
344 B
HTML
13 lines
344 B
HTML
{# templates/file_access.html #}
|
|
{% extends 'base.html' %}
|
|
|
|
{# page title #}
|
|
{% block title %}Dateizugriffe{% endblock %}
|
|
|
|
{# page content #}
|
|
{% block content %}
|
|
<div class="container">
|
|
<div class="alert alert-warning">Du hast keine gültige Freigaben.<br>Bitte Ordner mit einem Freigabelink freischalten.</div>
|
|
</div>
|
|
{% endblock %}
|