{% extends 'templates/base.html'%} {% load static %} {% block stylesheets %} {% endblock %} {% block title %} Widget's Calendar of Activties {% endblock %} {% block header %}

Widget's Calendar of Activties

{% endblock %} {% block body %} {% block content %}
    {% for event in events %}
  1. {{ event }}
  2. {% endfor %}
New Activity
{% endblock %} {% endblock %}