{% extends 'students/base.html' %} {% block title %}Resources{% endblock title %} {% block content %}

{{section.classroom.subject|upper}} : Resources


{% for resource in section.resources.all|dictsortreversed:"created_timestamp" %}

{{resource.created_timestamp|date:"M d, Y"}}

{{resource.text|linebreaksbr}}


{% if resource.file %} Download Resource {% endif %}

{% endfor %}
{% endblock content %}