2018-06-04 09:58:27 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block pagetitle %}
|
|
|
|
Royal Games
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
<h1>
|
|
|
|
Profilo di {{ royal.username }}
|
|
|
|
</h1>
|
2018-06-05 08:34:59 +00:00
|
|
|
{% if steam %}
|
|
|
|
{% include "minis/steam.html" %}
|
2018-06-04 09:58:27 +00:00
|
|
|
{% endif %}
|
2018-06-04 11:13:59 +00:00
|
|
|
{% if rl %}
|
|
|
|
{% include "minis/rl.html" %}
|
|
|
|
{% endif %}
|
2018-06-04 16:08:18 +00:00
|
|
|
{% if dota %}
|
|
|
|
{% include "minis/dota.html" %}
|
|
|
|
{% endif %}
|
2018-06-05 08:34:59 +00:00
|
|
|
{% if osu %}
|
|
|
|
{% include "minis/osu.html" %}
|
|
|
|
{% endif %}
|
2018-06-04 20:54:12 +00:00
|
|
|
{% if lol %}
|
|
|
|
{% include "minis/lol.html" %}
|
|
|
|
{% endif %}
|
2018-06-04 09:58:27 +00:00
|
|
|
{% endblock %}
|