partitioncloud-server/partitioncloud/templates/albums/index.html

13 lines
302 B
HTML
Raw Normal View History

2022-08-13 23:36:10 +02:00
{% extends 'base.html' %}
2024-01-25 16:22:04 +01:00
{% block title %}{{ _("Home") }}{% endblock %}
2022-08-13 23:36:10 +02:00
{% block content %}
2023-06-11 21:45:54 +02:00
<div style="text-align: center;">
2024-01-25 16:22:04 +01:00
{% set user_name %}
<i><b>{{ user.username }}</b></i>
{% endset %}
{{ _("Hi %(user_name)s !", user_name=user_name) }}<br/>
{{ _("No album selected") }}
2023-06-11 21:45:54 +02:00
</div>
2022-08-13 23:36:10 +02:00
{% endblock %}