{% extends "base.html" %} {% load bootstrap_icons %} {% block content %}

Welcome to the character store

This is a webapp for storing characters.

{% if user.is_authenticated %}

Welcome {% if user.first_name %}{{ user.first_name }}{% else %}{{ user.username }}{% endif %}

{% if user.gm_set.all %}

Campaigns you run

{% endif %}

Characters you play

{% else %}

Please sign in to see your characters and campaigns

{% endif %} Add a character? {% endblock %}