conventionschedule-android/webstorage/webproj/templates/index.html

44 lines
1.1 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>BFF</title>
</head>
<body>
<h1>
Brasil FurFest WebStorage
</h1>
<p>
This app works as a shared database that both the mobile app and the web app needs to display the schedule properly.
</p>
<p>
The <a href="{% url 'admin:index' %}">admin</a> interface looks a lot nicer than this page, but requires logging in.
</p>
<h3>
Media files:
</h3>
<ul>
<li>
<a href="./media">Open media directory</a>
</li>
</ul>
<h3>
Semi-structured files:
</h3>
<ul>
{% for convention_series in conventions_series %}
<li>
<a href="{% url 'conventions_json' convention_series.url 'minified' %}">
{% url 'conventions_json' convention_series.url 'minified' %}
</a>
</li>
<li>
<a href="{% url 'conventions_json' convention_series.url 'prettified' %}">
{% url 'conventions_json' convention_series.url 'prettified' %}
</a>
</li>
{% endfor %}
</ul>
</body>
</html>