{% extends "base.html" %} {% import "bootstrap/wtf.html" as wtf %} {% block title %}Peggy - Home{% endblock %} {% block page_content %}

Hello, {% if user.is_authenticated %}{{ user.username }} [{{ user.role.name }}]{% else %}Stranger. Please log in...{% endif %}.

{% if club %} Club: {{ club.name }} {% if club.home_venue %} playing at {{ venue.name }} {% endif %} {% if user.is_admin %} {{ club.name }} {% endif %} {% endif %}
{% endblock %}