{% extends "base.html" %}
{% load static %}
{% block sidebar-content %}
{% include 'components/membership_sidebar_component.html' %}
{% endblock %}
{% block tips %}
{% if not request.member %}
{% if request.user.is_authenticated %}
You have no member record associated with this account.
Please renew your membership to get started.
{% else %}
Something went wrong and your membership details could not be retrieved. Please try logging in.
{% endif %}
{% endif %}
{% endblock %}