Begin SAS

This commit is contained in:
Skia
2016-10-26 19:21:19 +02:00
parent 0b068d3e92
commit d554a5ee8d
14 changed files with 178 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
{% extends "core/base.jinja" %}
{% block title %}
{% trans %}SAS{% endtrans %}
{% endblock %}
{% block content %}
<h3>{% trans %}SAS{% endtrans %}</h3>
<div>
{% for a in root_file.children.filter(is_folder=True).all() %}
<div style="display: inline-block; border: solid 1px black;">
<a href="{{ url("sas:album", album_id=a.id) }}">{{ a.name }}</a>
</div>
{% endfor %}
</div>
{% endblock %}