{% extends "base_2col.html" %}
{% block sectionid %}browse{% endblock %}
{% block title %}User Details{% endblock %}
{% block billboard %}User Details{% endblock %}
{% block content %}
User Details for {{ object.username }}
{% if softwares %}
Currently listed Software
{% endif %}
{% if swsubscriptions %}
Current Software Subscriptions
| Title |
Last Notified |
Action |
{% for subsc in swsubscriptions %}
| {{ subsc.title }} |
{{ subsc.last_updated|date:"j F Y H:i:s" }} |
Unsubscribe |
{% endfor %}
{% endif %}
{% if forumsubscriptions %}
Current Forum Subscriptions
| Title |
Last Notified |
Action |
{% for subsc in forumsubscriptions %}
| {{ subsc.title }} |
{{ subsc.last_updated|date:"j F Y H:i:s" }} |
Unsubscribe |
{% endfor %}
{% endif %}
{% if threadsubscriptions %}
Current Thread Subscriptions
| Title |
Last Notified |
Action |
{% for subsc in threadsubscriptions %}
| {{ subsc.title }} |
{{ subsc.last_updated|date:"j F Y H:i:s" }} |
Unsubscribe |
{% endfor %}
{% endif %}
{% if swbookmarks %}
Current Software Bookmarks
{% endif %}
{% if forumbookmarks %}
Current Forum Bookmarks
{% endif %}
{% if threadbookmarks %}
Current Thread Bookmarks
{% endif %}
Change User Details
{% if form.errors %}
Please correct the errors below:
{% endif %}
{% endblock %}
{% block content-related %}
Viewing details of:
{{object.username}}
Last login:
{{object.last_login}}
Date joined:
{{object.date_joined}}
{% if user.is_superuser %}
To browse the currently registered users click here.
{% endif %}
{% endblock %}