{% extends 'news/base.html' %} {% block title %} Manage your account {% endblock %} {% block contents %}
Subscribed topics
{% if subs %} {% for sub in subs %} {% endfor %}
{{sub.topic.name}} {% if sub.is_creator %} Owner {% else %} {% with sub.topic as topic %} Unsubscribe {% endwith %} {% endif %}
{% else %}
You are not subscribied to any topics. Wanna see some topics?
{% endif %}
{{def_topic_form.as_p}}
Change password
{{form.as_p}}
{% if invites %}
You have been invited.
{% for invite in invites %} {% endfor %}
{{invite.topic.name}} {{invite.invite_text}}
{% endif %}
Other Details
{% endblock %} {% block sidebar %} {% endblock %}