{% extends "core/frontend/index.jinja" %} {% block content %}

{{ sesh["username"] }}'s Account

Cards

All aime cards are listed here for the given user.

Add Card {% if cards is defined and cards|length > 0 %}
{% for c in cards %} {% endfor %}
# Access Code Status Actions
{{ c.index }} {{ c.access_code }} {% if c.status == 'Active'%} Active {% elif c.status == 'Locked' %} Locked {% endif %} {% if c.status == 'Active'%} {% elif c.status == 'Locked' %} {% endif %}
{% else %} {% endif %}

Arcades

All arcades connected to the given account are listed here.

{% if arcades is defined and arcades|length > 0 %}
{% for a in arcades %} {% endfor %}
# Name
{{ a.index }} {{ a.name }}
{% else %} {% endif %}
{% endblock content %}