diff options
Diffstat (limited to 'templates/activities/notifications.html')
-rw-r--r-- | templates/activities/notifications.html | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/templates/activities/notifications.html b/templates/activities/notifications.html index c071a49..9bf66bb 100644 --- a/templates/activities/notifications.html +++ b/templates/activities/notifications.html @@ -3,20 +3,9 @@ {% 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> + {% for event in events %} + {% include "activities/_event.html" %} + {% empty %} + No events yet. + {% endfor %} {% endblock %} |