{% extends 'game_base.html' %} {% load humanize %} {% block content %}

Your Profile

Logged in as {{user.email}}

Change Password

Edit Details

Played Games


{% if played_paginator %} {% for game in played_paginator %} {% endfor %}
Game Score
{% if game.challenge %}{{game.challenge.name}}{% else %}Random Game{% endif %} {{game.score|intcomma}} View
{% if played_is_paginated %} {% endif %} {% else %}

You haven't played any games yet, what are you waiting for?

{% endif %}

Your Contributions


{% if challenges_paginator %} {% for challenge in challenges_paginator %} {% endfor %}
Challenge Name Average Score
{{challenge.name}} {{challenge.average|intcomma}} Edit
{% if challenges_is_paginated %} {% endif %} {% else %}

You haven't added any challenges, try adding one.

{% endif %}
Create a New Challenge
{% endblock %}