Compare commits

...

5 Commits

Author SHA1 Message Date
Frédéric Péters d1fc279963 translation update
gitea/gadjo/pipeline/head This commit looks good Details
2023-03-01 13:50:45 +01:00
Frédéric Péters df611929bf general: add reveal checkbox to password fields (#74652) 2023-03-01 13:50:44 +01:00
Lauréline Guérin c59715e912
style: add colored tags (#74582)
gitea/gadjo/pipeline/head This commit looks good Details
2023-02-28 10:51:59 +01:00
Valentin Deniaud 45bac77a26 templates: use field.id_for_label in field title id attribute (#74526)
gitea/gadjo/pipeline/head This commit looks good Details
2023-02-28 10:09:50 +01:00
Valentin Deniaud bbcd17465f templates: avoid empty id attribute in widget (#74541)
gitea/gadjo/pipeline/head This commit looks good Details
2023-02-28 10:08:44 +01:00
5 changed files with 84 additions and 29 deletions

View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: gadjo 0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-08-21 06:03+0000\n"
"PO-Revision-Date: 2020-08-21 08:03+0200\n"
"POT-Creation-Date: 2023-02-25 18:07+0100\n"
"PO-Revision-Date: 2023-02-25 18:08+0100\n"
"Last-Translator: Frederic Peters <fpeters@entrouvert.com>\n"
"Language: French\n"
"MIME-Version: 1.0\n"
@ -25,36 +25,26 @@ msgstr "Il y a eu un problème à la validation du formulaire."
msgid "(Hidden field %(name)s) %(error)s"
msgstr "(champ caché %(name)s) %(error)s"
#: templates/gadjo/root.html:36
#: templates/gadjo/password-widget.html:8
msgid "Display password"
msgstr "Afficher le mot de passe"
#: templates/gadjo/password-widget.html:9
msgid "Display"
msgstr "Afficher"
#: templates/gadjo/root.html:39
msgid "Logout"
msgstr "Déconnexion"
#: templates/gadjo/root.html:54
msgid ""
"\n"
" <p><strong>Do you know your web browser is obsolete?</strong> We "
"recommend\n"
" you to <a href=\"http://windows.microsoft.com/en-us/internet-explorer/"
"download-ie\">update\n"
" your web browser</a> or to <a href=\"http://browsehappy.com/\">use\n"
" different web browsers</a> as some features may not work.\n"
" "
msgstr ""
"\n"
" <p><strong>Savez-vous que votre navigateur est obsolète ?</strong> Nous "
"vous recommandons de <a href=\"http://windows.microsoft.com/en-us/internet-"
"explorer/download-ie\">mettre à jour votre navigateur</a> ou d'<a href="
"\"http://browsehappy.com/\">utiliser un navigateur différent</a>.\n"
" "
#: templates/gadjo/root.html:70
#: templates/gadjo/root.html:60
msgid "Homepage"
msgstr "Accueil"
#: templates/gadjo/widget.html:11
#: templates/gadjo/widget.html:12
msgid "This field is required."
msgstr "Ce champ est obligatoire."
#: templates/gadjo/widget.html:13
#: templates/gadjo/widget.html:14
msgid "(optional)"
msgstr "(optionnel)"

View File

@ -703,3 +703,23 @@ div.godo--editor {
}
}
}
.gadjo-password-field {
position: relative;
.title label {
padding-right: 6em;
}
}
.password-visibility-checkbox {
display: flex;
position: absolute;
top: 0;
right: 0;
input + label {
margin: 0;
}
input {
margin: 0 0.25em 0 0;
}
}

View File

@ -827,6 +827,23 @@ ul.objects-list li span.tag {
left: -1ex;
}
span.meta {
position: relative;
padding: 0 0.5ex;
&.meta-success {
color: #268c26;
}
&.meta-warning {
color: #eb7500;
}
&.meta-error {
color: #cf1726;
}
&.meta-disabled {
color: #555;
}
}
#sidepage {
position: absolute;
top: 0px;

View File

@ -0,0 +1,25 @@
{% extends "gadjo/widget.html" %}
{% load i18n %}
{% block widget-css-classes %}{{ block.super }} gadjo-password-field{% endblock %}
{% block widget-bottom %}
<div class="password-visibility-checkbox">
<input id="password-visibility-checkbox-{{ field.id_for_label }}" type="checkbox" aria-label="{% trans "Display password" %}">
<label for="password-visibility-checkbox-{{ field.id_for_label }}">{% trans "Display" %}</label>
</div>
<script>
(function() {
const checkbox = document.getElementById('password-visibility-checkbox-{{ field.id_for_label }}');
const password_input = document.querySelector('#{{field.id_for_label}}_p input[type=password]');
checkbox.addEventListener('change', function(e) {
if (this.checked) {
password_input.type = 'text';
} else {
password_input.type = 'password';
}
});
checkbox.checked = false; // force to be hidden on load
})();
</script>
{% endblock %}

View File

@ -1,12 +1,12 @@
{% load gadjo i18n %}
<div class="widget
<div class="{% block widget-css-classes %}widget
{{ field.css_classes }}
django-{{ field|field_class_name }}
{% if field.errors %}widget-with-error{% endif %}
{% if field.field.required %}widget-required{% else %}widget-optional{% endif %}"
id="{{field.id_for_label}}_p">
{% if field.field.required %}widget-required{% else %}widget-optional{% endif %}{% endblock %}"
{% if field.id_for_label %}id="{{field.id_for_label}}_p"{% endif %}>
{% block widget-title %}
<div class="title" id="{{ field.name }}">
<div class="title" {% if field.id_for_label %}id="{{ field.id_for_label }}_title"{% endif %}>
{{ field.label_tag }}
{% if field.field.required %}
<span title="{% trans "This field is required." %}" class="required">*</span>
@ -16,7 +16,9 @@
</div>
{% endblock %}
{% block widget-content %}
<div class="content" aria-labelledby="{{ field.name }}" {% block widget-attrs %}{% endblock %}>
<div class="content"
{% if field.id_for_label %}aria-labelledby="{{ field.id_for_label }}_title"{% endif %}
{% block widget-attrs %}{% endblock %}>
{% block widget-error %}
{% if field.errors %}
<div class="error"><p>
@ -34,6 +36,7 @@
<div class="hint">{{ field.help_text|safe }}</div>
{% endif %}
{% endblock %}
{% block widget-bottom %}{% endblock %}
</div>
{% endblock %}
</div>