{% extends "base.html" %} {% load i18n %} {% load static %} {% load crispy_forms_tags %} {% load socialaccount %} {% block title %}User: {{ object.username }}{% endblock %} {% block content %}

Profile

Profile image

{{ user.username }}

{{ user.name }}

{{ user.email }}

Last login {{ user.last_login}}

{% if blurb.description %}

Description: {{ blurb.description }}

{% endif %} {% if blurb.skills %}

Skills: {{ blurb.skills }}

{% endif %} {% if membership %}

Membership status

Member since {{membership.join_date}}

Membership Status: {{ membership.get_status }}

Last Payment: {{membership.payment_date}}

Amount: £{{membership.payment}}

{% else %} You are not currently a member consider signing up. {% endif %}
{% if membership.is_active %}
Joined {{membership.date}}

MHS{{ user.id|stringformat:"05d" }}

{{user.name}}

Cancel Membership
{% else %}

Sign up below

{% csrf_token %} {{ membership_form|crispy }}
{% endif %}

{{ object.username }}

{% if object.name %}

{{ object.name }}

{% endif %}
{% if object == request.user %}
{% endif %}
{% endblock content %}