mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
14 lines
243 B
HTML
14 lines
243 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block pagetitle %}
|
||
|
Royal Games
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>
|
||
|
Profilo di {{ royal.username }}
|
||
|
</h1>
|
||
|
{% if osu %}
|
||
|
{% include "minis/osu.html" %}
|
||
|
{% endif %}
|
||
|
{% endblock %}
|