diff --git a/lnbits/core/templates/core/wallet.html b/lnbits/core/templates/core/wallet.html index 8ca21c1..f1d4e42 100644 --- a/lnbits/core/templates/core/wallet.html +++ b/lnbits/core/templates/core/wallet.html @@ -1,7 +1,17 @@ -{% extends "base.html" %} {% from "macros.jinja" import window_vars with context -%} {% block scripts %} {{ window_vars(user, wallet) }} +{% extends "base.html" %} + +{% from "macros.jinja" import window_vars with context +%} + +{% block scripts %} {{ window_vars(user, wallet) }} -{% endblock %} {% block page %} +{% endblock %} + +{% block title %} +{{ wallet.name }} - {{ SITE_TITLE }} +{% endblock %} + +{% block page %}
@@ -350,7 +360,7 @@ {% raw %}

- Authenticate with {{ parse.lnurlauth.domain }} from wallet {{ g.wallet.name }}? + Authenticate with {{ parse.lnurlauth.domain }}?

diff --git a/lnbits/templates/base.html b/lnbits/templates/base.html index 7dce34e..d81cf2a 100644 --- a/lnbits/templates/base.html +++ b/lnbits/templates/base.html @@ -8,10 +8,7 @@ {% block styles %}{% endblock %} - - {% block title %} {% if SITE_TITLE != 'LNbits' %}{{ SITE_TITLE }}{% else - %}LNbits{% endif %} {% endblock %} - + {% block title %}{{ SITE_TITLE }}{% endblock %} {% block styles %}{% endblock %} - - {% block title %} {% if SITE_TITLE != 'LNbits' %}{{ SITE_TITLE }}{% else - %}LNbits{% endif %} {% endblock %} - + {% block title %}{{ SITE_TITLE }}{% endblock %}