mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-23 15:50:59 +00:00
23 lines
498 B
HTML
23 lines
498 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}Notifications{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
{% include "activities/_home_menu.html" %}
|
||
|
|
||
|
<section class="columns">
|
||
|
<div class="left-column">
|
||
|
{% for event in events %}
|
||
|
{% include "activities/_event.html" %}
|
||
|
{% empty %}
|
||
|
No events yet.
|
||
|
{% endfor %}
|
||
|
</div>
|
||
|
|
||
|
<div class="right-column">
|
||
|
<h2>?</h2>
|
||
|
</div>
|
||
|
|
||
|
</section>
|
||
|
{% endblock %}
|