{% extends 'base/base.html' %}
{% load static %}
{% block title %} {% endblock %}
{% load index %}
{% block body %}
{% include 'base/nav-bar.html' %}
| Student |
Organisation |
Title |
Bug id |
Date |
{% for object in contribution_list %}
| {{ object.user.first_name }} {{ object.user.last_name }} |
{{ object.organisation }} |
{{ object.title }} |
{{ object.contribution_id }} |
{% for i in range %}
{% ifequal object.date.month i %}
{{ month|index:i }}, {{ object.date.year }} |
{% endifequal %}
{% endfor %}
{% endfor %}
{% include 'base/footer.html' %}
{% endblock %}
{% block script %}
{% endblock %}
{% block css %}
{% endblock %}