2018-06-04 09:58:27 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block pagetitle %}
|
2018-06-04 21:37:48 +00:00
|
|
|
{{ royal.username }}
|
2018-06-04 09:58:27 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
2018-06-05 10:31:11 +00:00
|
|
|
{% block posthead %}
|
|
|
|
{% if css %}
|
|
|
|
<style>
|
2018-06-05 13:11:58 +00:00
|
|
|
{% autoescape false %}
|
|
|
|
{{ css.css }}
|
|
|
|
{% endautoescape %}
|
2018-06-05 10:31:11 +00:00
|
|
|
</style>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|
|
|
2018-06-04 09:58:27 +00:00
|
|
|
{% block body %}
|
|
|
|
<h1>
|
2018-06-05 10:31:11 +00:00
|
|
|
Profilo di {{ royal.username }} {% if session.get('user_id', '') == royal.id %}<a href="/setcss" id="edit-css">Modifica</a>{% endif %}
|
2018-06-04 09:58:27 +00:00
|
|
|
</h1>
|
2018-06-17 19:20:30 +00:00
|
|
|
{% with record = ryg %}
|
|
|
|
{% include "minis/ryg.html" %}
|
|
|
|
{% endwith %}
|
2018-06-05 08:34:59 +00:00
|
|
|
{% if steam %}
|
2018-06-13 21:32:26 +00:00
|
|
|
{% with record = steam %}
|
|
|
|
{% include "minis/steam.html" %}
|
|
|
|
{% endwith %}
|
2018-06-04 09:58:27 +00:00
|
|
|
{% endif %}
|
2018-06-04 11:13:59 +00:00
|
|
|
{% if rl %}
|
2018-06-13 21:32:26 +00:00
|
|
|
{% with record = rl %}
|
|
|
|
{% include "minis/rl.html" %}
|
|
|
|
{% endwith %}
|
2018-06-04 11:13:59 +00:00
|
|
|
{% endif %}
|
2018-06-04 16:08:18 +00:00
|
|
|
{% if dota %}
|
2018-06-13 21:32:26 +00:00
|
|
|
{% with record = dota %}
|
|
|
|
{% include "minis/dota.html" %}
|
|
|
|
{% endwith %}
|
2018-06-04 16:08:18 +00:00
|
|
|
{% endif %}
|
2018-06-05 08:34:59 +00:00
|
|
|
{% if osu %}
|
2018-06-13 21:32:26 +00:00
|
|
|
{% with record = osu %}
|
|
|
|
{% include "minis/osu.html" %}
|
|
|
|
{% endwith %}
|
2018-06-05 08:34:59 +00:00
|
|
|
{% endif %}
|
2018-06-04 20:54:12 +00:00
|
|
|
{% if lol %}
|
2018-06-13 21:32:26 +00:00
|
|
|
{% with record = lol %}
|
|
|
|
{% include "minis/lol.html" %}
|
|
|
|
{% endwith %}
|
2018-06-04 20:54:12 +00:00
|
|
|
{% endif %}
|
2018-06-07 09:47:04 +00:00
|
|
|
{% if ow %}
|
2018-06-13 21:32:26 +00:00
|
|
|
{% with record = ow %}
|
|
|
|
{% include "minis/ow.html" %}
|
|
|
|
{% endwith %}
|
2018-06-07 09:47:04 +00:00
|
|
|
{% endif %}
|
2018-06-04 09:58:27 +00:00
|
|
|
{% endblock %}
|