1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2025-02-17 10:53:57 +00:00
royalnet/templates/profile.html

34 lines
776 B
HTML
Raw Normal View History

2018-06-04 11:58:27 +02:00
{% extends 'base.html' %}
{% block pagetitle %}
2018-06-04 23:37:48 +02:00
{{ royal.username }}
2018-06-04 11:58:27 +02:00
{% endblock %}
2018-06-05 12:31:11 +02:00
{% block posthead %}
{% if css %}
<style>
{{ css.css }}
</style>
{% endif %}
{% endblock %}
2018-06-04 11:58:27 +02:00
{% block body %}
<h1>
2018-06-05 12:31:11 +02:00
Profilo di {{ royal.username }} {% if session.get('user_id', '') == royal.id %}<a href="/setcss" id="edit-css">Modifica</a>{% endif %}
2018-06-04 11:58:27 +02:00
</h1>
2018-06-05 10:34:59 +02:00
{% if steam %}
{% include "minis/steam.html" %}
2018-06-04 11:58:27 +02:00
{% endif %}
2018-06-04 13:13:59 +02:00
{% if rl %}
{% include "minis/rl.html" %}
{% endif %}
2018-06-04 18:08:18 +02:00
{% if dota %}
{% include "minis/dota.html" %}
{% endif %}
2018-06-05 10:34:59 +02:00
{% if osu %}
{% include "minis/osu.html" %}
{% endif %}
2018-06-04 22:54:12 +02:00
{% if lol %}
{% include "minis/lol.html" %}
{% endif %}
2018-06-04 11:58:27 +02:00
{% endblock %}