Start switch to Bootstrap 5
- drop jQuery and fontawesome dependencies - add bootstrap5 and bootstrap-icons - update fonts mfizz - update base templates and the first set of other templates - replace blocktrans and trans with blocktranslate and translate to prepare for Django 4 - move hostingpakcage templates to hostingpackages/templates - update translations
This commit is contained in:
parent
5cf7ef7a23
commit
8e42cb9c18
124 changed files with 10873 additions and 4490 deletions
|
@ -1,4 +1,4 @@
|
|||
{% load account %}{% user_display user as user_display %}{% load i18n %}{% autoescape off %}{% blocktrans with current_site.name as site_name %}User {{ user_display }} at {{ site_name }} has given this as an email address.
|
||||
{% load account %}{% user_display user as user_display %}{% load i18n %}{% autoescape off %}{% blocktranslate with current_site.name as site_name %}User {{ user_display }} at {{ site_name }} has given this as an email address.
|
||||
|
||||
To confirm this is correct, go to {{ activate_url }}
|
||||
{% endblocktrans %}{% endautoescape %}
|
||||
{% endblocktranslate %}{% endautoescape %}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{% load i18n %}
|
||||
{% autoescape off %}
|
||||
{% blocktrans %}Confirm E-mail Address{% endblocktrans %}
|
||||
{% blocktranslate %}Confirm E-mail Address{% endblocktranslate %}
|
||||
{% endautoescape %}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
{% load i18n %}{% blocktrans with site.domain as site_domain %}You're receiving this e-mail because you or someone else has requested a password for your user account at {{site_domain}}.
|
||||
It can be safely ignored if you did not request a password reset. Click the link below to reset your password.{% endblocktrans %}
|
||||
{% load i18n %}{% blocktranslate with site.domain as site_domain %}You're receiving this e-mail because you or someone else has requested a password for your user account at {{site_domain}}.
|
||||
It can be safely ignored if you did not request a password reset. Click the link below to reset your password.{% endblocktranslate %}
|
||||
|
||||
{{ password_reset_url }}
|
||||
|
||||
{% if username %}{% blocktrans %}In case you forgot, your username is {{ username }}.{% endblocktrans %}
|
||||
{% if username %}{% blocktranslate %}In case you forgot, your username is {{ username }}.{% endblocktranslate %}
|
||||
|
||||
{% endif %}{% trans 'Thanks for using our site!' %}
|
||||
{% endif %}{% translate 'Thanks for using our site!' %}
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{% load i18n %}
|
||||
{% autoescape off %}
|
||||
{% blocktrans %}Password Reset E-mail{% endblocktrans %}
|
||||
{% blocktranslate %}Password Reset E-mail{% endblocktranslate %}
|
||||
{% endautoescape %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue