Commit 3d07daed authored by Ysabella Panghulan's avatar Ysabella Panghulan

created templates folder and calendar.html

parent f9970740
{%extends 'base.html'%}
{% block title %} Widget's Calendar of Activties {% endblock %}
{% block header %}
<h2>Widget's Calendar of Activties</h2>
{% endblock %}
{% block body %}
{% block content %}
<ul>
{% for event in events %}
<a href="{{ event.get_absolute_url }}">
<li>{{ event }}</li>
</a>
{% endfor %}
</ul>
{% endblock %}
<div class="calendar-links">
<a href="events/add" class="btn-primary">New Activity</a>
<a href="../dashboard" class="btn-primary">Dashboard</a>
<a href="../announcements" class="btn-primary">Announcements</a>
<a href="../forum" class="btn-primary">Forum</a>
<a href="../assignments" class="btn-primary">Assignments</a>
</div>
{% endblock %}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment