Move Code into repo

This commit is contained in:
Aaron Kimbre
2022-01-16 12:22:00 -06:00
parent 1eef1854bc
commit 53ffe927f3
196 changed files with 33149 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
{% extends 'base.html.j2' %}
{% block title %}
Viewing {{ account_data.username }}
{% endblock %}
{% block content_before %}
Viewing {{ account_data.username }}
{% if current_user.id == account_data.id %}
<br/>
Hey, this is you!
{% endif %}
{% endblock %}
{% block content %}
{% include 'partials/_account.html.j2' %}
{% endblock content %}
{% block content_after %}
<br/>
<br/>
<h3 class="text-center">Characters</h3>
<hr class="bg-primary"/>
<div class="card-columns">
{% for character in account_data.charinfo %}
{% include 'partials/_character.html.j2' %}
{% endfor %}
</div>
{% endblock content_after %}