{% 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 }}

Username: {{ object.username }}
Full Name: {{object.get_full_name}}
Email Address: {{object.email}}
{% if softwares %}

Currently listed Software

{% for sw in softwares %} {% endfor %}
{{ sw.software.title }} {{ sw.version }}
{% endif %} {% if swsubscriptions %}

Current Software Subscriptions

{% for subsc in swsubscriptions %} {% endfor %}
Title Last Notified Action
{{ subsc.title }} {{ subsc.last_updated|date:"j F Y H:i:s" }} Unsubscribe
{% endif %} {% if forumsubscriptions %}

Current Forum Subscriptions

{% for subsc in forumsubscriptions %} {% endfor %}
Title Last Notified Action
{{ subsc.title }} {{ subsc.last_updated|date:"j F Y H:i:s" }} Unsubscribe
{% endif %} {% if threadsubscriptions %}

Current Thread Subscriptions

{% for subsc in threadsubscriptions %} {% endfor %}
Title Last Notified Action
{{ subsc.title }} {{ subsc.last_updated|date:"j F Y H:i:s" }} Unsubscribe
{% endif %} {% if swbookmarks %}

Current Software Bookmarks

{% for subsc in swbookmarks %} {% endfor %}
Title Action
{{ subsc.title }} Remove
{% endif %} {% if forumbookmarks %}

Current Forum Bookmarks

{% for subsc in forumbookmarks %} {% endfor %}
Title Action
{{ subsc.title }} Remove
{% endif %} {% if threadbookmarks %}

Current Thread Bookmarks

{% for subsc in threadbookmarks %} {% endfor %}
Title Action
{{ subsc.title }} Remove
{% endif %}

Change User Details

{% if form.errors %}

Please correct the errors below:

{% endif %}
{% if form.firstname.errors %} {{ form.firstname.errors|join:", " }}{% endif %}
{{ form.firstname|safe }}
{% if form.lastname.errors %} {{ form.lastname.errors|join:", " }}{% endif %}
{{ form.lastname|safe }}
{% if form.email.errors %} {{ form.email.errors|join:", " }}{% endif %}
{{ form.email|safe }}
{% if form.password1.errors %} {{ form.password2.errors|join:", " }}{% endif %}
{{ form.password1|safe }}
{% if form.password2.errors %} {{ form.password2.errors|join:", " }}{% endif %}
{{ form.password2|safe }}
{% 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 %}