partitioncloud-server/partitioncloud/templates/albums/index.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 %}