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

54 lines
1.3 KiB
HTML
Raw Normal View History

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