{% extends "layout.html" %} {% block body %}
{% if user %}

~{{ user.username }}

{% else %}

Welcome back, {{ current_user.username }}! This is your ticket tracking service. Documentation for its use is available here.

{% endif %} {% if notice %}
{{ notice }}
{% endif %} {% if user %} {% if user.location %}

{{user.location}}

{% endif %} {% if user.url %}

{{user.url}}

{% endif %} {% if user.bio %}

{{user.bio | md}}

{% endif %} {% endif %} {% if profile and (current_user and user.id == current_user.id) %}
This is your public profile page.
{% elif not user or (current_user and user.id == current_user.id) %} Create new tracker {{icon("caret-right")}}
User preferences
{{csrf_token()}}
{% endif %} {% if len(trackers) > 0 %}

{{ tracker_list_msg }}

{% for tracker in trackers %}

{{ tracker.owner }}/{{ tracker.name }}

Last active {{ tracker.updated | date }} {% endfor %}
{% if more_trackers %} View more {{icon("caret-right")}} {% endif %} {% endif %}

{% include 'events.html' with context %}
{% endblock %}