{% extends 'base/base.html' %} {% load static %} {% block title %} Achievements {% endblock %} {% load index %} {% block body %} {% include 'base/nav-bar.html' %}

Contributions

{% if contribution_list %} {% for object in contribution_list %} {% for i in range %} {% ifequal object.date.month i %} {% endifequal %} {% endfor %} {% endfor %}
Student Organisation Title Bug id Date
{{ object.user.first_name }} {{ object.user.last_name }} {{ object.organisation }} {{ object.title }} {{ object.contribution_id }} {{ month|index:i }}, {{ object.date.year }}
{% if request.user.is_authenticated %} {% endif %} {% else %} {% if request.user.is_authenticated %} {% endif %} {% endif %}

GSoC

{% if gsoc_list %}
{% for object in gsoc_list %} {% for i in range %} {% ifequal object.date.month i %} {% endifequal %} {% endfor %} {% endfor %}
Student Organisation Title Mentors Date
{{ object.user.first_name }} {{ object.user.last_name }} {{ object.organization }} {{ object.title }} {{ object.mentors }} {{ month|index:i }}, {{ object.date.year }}
{% if request.user.is_authenticated %} {% endif %} {% else %} {% if request.user.is_authenticated %} {% endif %} {% endif %}

Articles

{% if article_list %}
{% for object in article_list %} {% for i in range %} {% ifequal object.date.month i %} {% endifequal %} {% endfor %} {% endfor %}
Student Magazine Title Area Date
{{ object.user.first_name }} {{ object.user.last_name }} {{ object.magazine }} {{ object.title }} {{ object.area }} {{ month|index:i }}, {{ object.date.year }}
{% if request.user.is_authenticated %} {% endif %} {% else %} {% if request.user.is_authenticated %} {% endif %} {% endif %}

Internships

{% if intern_list %}
{% for object in intern_list %} {% for i in range %} {% ifequal object.date.month i %} {% endifequal %} {% endfor %} {% endfor %}
Student Organisation Title Type Date
{{ object.user.first_name }} {{ object.user.last_name }} {{ object.organisation }} {{ object.title }} {{ object.type }} {{ month|index:i }}, {{ object.date.year }}
{% if request.user.is_authenticated %} {% endif %} {% else %} {% if request.user.is_authenticated %} {% endif %} {% endif %}

Talks

{% if speaker_list %}
{% for object in speaker_list %} {% for i in range %} {% ifequal object.date.month i %} {% endifequal %} {% endfor %} {% endfor %}
Student Conference, location Title type Date
{{ object.user.first_name }} {{ object.user.last_name }} {{ object.conference_name }}, {{ object.location }} {{ object.title }} {{ object.type }} {{ month|index:i }}, {{ object.date.year }}
{% if request.user.is_authenticated %} {% endif %} {% else %} {% if request.user.is_authenticated %} {% endif %} {% endif %}

Contests

{% if speaker_list %}
{% for object in object_list %} {% for i in range %} {% ifequal object.date.month i %} {% endifequal %} {% endfor %} {% endfor %}
Student Title Rank Contest Id Solved problems Date
{{ object.user.first_name }} {{ object.user.last_name }} {{ object.title }} {{ object.ranking }} {{ object.contest_id }} {{ object.problems_solved }} {{ month|index:i }}, {{ object.date.year }}
{% if request.user.is_authenticated %} {% endif %} {% else %} {% if request.user.is_authenticated %} {% endif %} {% endif %}
{% include 'base/footer.html' %} {% endblock %} {% block script %} {% endblock %} {% block css %} {% endblock %}