mirror of
https://github.com/DarkflameUniverse/NexusDashboard.git
synced 2025-10-26 18:11:57 +00:00
Move Code into repo
This commit is contained in:
30
app/templates/accounts/view.html.j2
Normal file
30
app/templates/accounts/view.html.j2
Normal 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 %}
|
||||
Reference in New Issue
Block a user