mirror of
https://github.com/partitioncloud/partitioncloud-server.git
synced 2025-01-23 17:26:26 +01:00
13 lines
302 B
HTML
13 lines
302 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}{{ _("Home") }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<div style="text-align: center;">
|
|
{% set user_name %}
|
|
<i><b>{{ user.username }}</b></i>
|
|
{% endset %}
|
|
{{ _("Hi %(user_name)s !", user_name=user_name) }}<br/>
|
|
{{ _("No album selected") }}
|
|
</div>
|
|
{% endblock %} |