mirror of
https://github.com/ae-utbm/sith.git
synced 2025-10-09 16:24:39 +00:00
improve new member form style
This commit is contained in:
24
club/static/club/members.scss
Normal file
24
club/static/club/members.scss
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
#club_members_table {
|
||||||
|
tbody label {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
#add_club_members_form {
|
||||||
|
fieldset {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
column-gap: 2em;
|
||||||
|
row-gap: 1em;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
|
||||||
|
@media (max-width: 1100px) {
|
||||||
|
justify-content: space-evenly;
|
||||||
|
}
|
||||||
|
|
||||||
|
.errorlist {
|
||||||
|
max-width: 300px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@@ -7,11 +7,14 @@
|
|||||||
{% block additional_css %}
|
{% block additional_css %}
|
||||||
<link rel="stylesheet" href="{{ static("bundled/core/components/ajax-select-index.css") }}">
|
<link rel="stylesheet" href="{{ static("bundled/core/components/ajax-select-index.css") }}">
|
||||||
<link rel="stylesheet" href="{{ static("core/components/ajax-select.scss") }}">
|
<link rel="stylesheet" href="{{ static("core/components/ajax-select.scss") }}">
|
||||||
|
<link rel="stylesheet" href="{{ static("club/members.scss") }}">
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h2>{% trans %}Club members{% endtrans %}</h2>
|
<h2>{% trans %}Club members{% endtrans %}</h2>
|
||||||
<br />
|
<br />
|
||||||
|
<h4>{% trans %}Add a new member{% endtrans %}</h4>
|
||||||
|
|
||||||
{{ add_member_fragment }}
|
{{ add_member_fragment }}
|
||||||
<br />
|
<br />
|
||||||
{% if members %}
|
{% if members %}
|
||||||
|
@@ -1,27 +1,30 @@
|
|||||||
<h4>{% trans %}Add a new member{% endtrans %}</h4>
|
|
||||||
<form
|
<form
|
||||||
hx-post="{{ url('club:club_new_members', club_id=club.id) }}"
|
hx-post="{{ url('club:club_new_members', club_id=club.id) }}"
|
||||||
hx-disabled-elt="find input[type='submit']"
|
hx-disabled-elt="find input[type='submit']"
|
||||||
hx-swap="outerHTML"
|
hx-swap="outerHTML"
|
||||||
id="add_users"
|
id="add_club_members_form"
|
||||||
>
|
>
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
{{ form.non_field_errors() }}
|
{{ form.non_field_errors() }}
|
||||||
<p>
|
<fieldset>
|
||||||
{{ form.user.errors }}
|
|
||||||
{{ form.user.label_tag()}}
|
<div>
|
||||||
<span class="helptext">{{ form.user.help_text }}</span>
|
{{ form.user.label_tag()}}
|
||||||
{{ form.user }}
|
<span class="helptext">{{ form.user.help_text }}</span>
|
||||||
</p>
|
{{ form.user }}
|
||||||
<p>
|
{{ form.user.errors }}
|
||||||
{{ form.role.errors }}
|
</div>
|
||||||
{{ form.role.label_tag()}}
|
<div>
|
||||||
{{ form.role }}
|
{{ form.role.label_tag()}}
|
||||||
</p>
|
{{ form.role }}
|
||||||
<p>
|
{{ form.role.errors }}
|
||||||
{{ form.description.errors }}
|
</div>
|
||||||
{{ form.description.label_tag()}}
|
<div>
|
||||||
{{ form.description }}
|
{{ form.description.label_tag()}}
|
||||||
</p>
|
{{ form.description }}
|
||||||
<p><input type="submit" /></p>
|
{{ form.description.errors }}
|
||||||
|
</div>
|
||||||
|
</fieldset>
|
||||||
|
<button type="submit" class="btn btn-blue">
|
||||||
|
<i class="fa fa-user-plus"></i> {% trans %}Add{% endtrans %}</button>
|
||||||
</form>
|
</form>
|
||||||
|
@@ -36,6 +36,7 @@
|
|||||||
> .ts-control {
|
> .ts-control {
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
max-width: 300px;
|
max-width: 300px;
|
||||||
|
width: 300px;
|
||||||
background-color: var(--nf-input-background-color);
|
background-color: var(--nf-input-background-color);
|
||||||
|
|
||||||
&::after {
|
&::after {
|
||||||
|
@@ -47,6 +47,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
input,
|
input,
|
||||||
|
select,
|
||||||
textarea[type="text"],
|
textarea[type="text"],
|
||||||
[type="number"],
|
[type="number"],
|
||||||
.ts-control {
|
.ts-control {
|
||||||
@@ -240,6 +241,23 @@ form {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
input[type="text"],
|
||||||
|
input[type="email"],
|
||||||
|
input[type="tel"],
|
||||||
|
input[type="url"],
|
||||||
|
input[type="password"],
|
||||||
|
input[type="number"],
|
||||||
|
input[type="date"],
|
||||||
|
input[type="datetime-local"],
|
||||||
|
input[type="week"],
|
||||||
|
input[type="time"],
|
||||||
|
input[type="month"],
|
||||||
|
input[type="search"],
|
||||||
|
textarea,
|
||||||
|
select,
|
||||||
|
.ts-control {
|
||||||
|
min-height: calc(var(--nf-input-size) * 2.5);
|
||||||
|
}
|
||||||
|
|
||||||
input[type="text"],
|
input[type="text"],
|
||||||
input[type="checkbox"],
|
input[type="checkbox"],
|
||||||
|
@@ -506,6 +506,10 @@ th {
|
|||||||
>ul {
|
>ul {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
>input[type="checkbox"] {
|
||||||
|
padding: unset;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
td {
|
td {
|
||||||
|
@@ -173,10 +173,6 @@ msgstr "L'utilisateur doit être cotisant pour faire partie d'un club"
|
|||||||
msgid "You can not add the same user twice"
|
msgid "You can not add the same user twice"
|
||||||
msgstr "Vous ne pouvez pas ajouter deux fois le même utilisateur"
|
msgstr "Vous ne pouvez pas ajouter deux fois le même utilisateur"
|
||||||
|
|
||||||
#: club/forms.py
|
|
||||||
msgid "You should specify a role"
|
|
||||||
msgstr "Vous devez choisir un rôle"
|
|
||||||
|
|
||||||
#: club/forms.py sas/forms.py
|
#: club/forms.py sas/forms.py
|
||||||
msgid "You do not have the permission to do that"
|
msgid "You do not have the permission to do that"
|
||||||
msgstr "Vous n'avez pas la permission de faire cela"
|
msgstr "Vous n'avez pas la permission de faire cela"
|
||||||
@@ -326,6 +322,14 @@ msgstr "Il n'y a pas de club dans ce site web."
|
|||||||
msgid "Club members"
|
msgid "Club members"
|
||||||
msgstr "Membres du club"
|
msgstr "Membres du club"
|
||||||
|
|
||||||
|
#: club/templates/club/club_members.jinja
|
||||||
|
msgid "Add a new member"
|
||||||
|
msgstr "Ajouter un nouveau membre"
|
||||||
|
|
||||||
|
#: club/templates/club/club_members.jinja
|
||||||
|
msgid "Current club members"
|
||||||
|
msgstr "Membres actuels du club"
|
||||||
|
|
||||||
#: club/templates/club/club_members.jinja
|
#: club/templates/club/club_members.jinja
|
||||||
#: club/templates/club/club_old_members.jinja
|
#: club/templates/club/club_old_members.jinja
|
||||||
#: core/templates/core/user_clubs.jinja
|
#: core/templates/core/user_clubs.jinja
|
||||||
@@ -350,11 +354,6 @@ msgstr "Depuis"
|
|||||||
msgid "There are no members in this club."
|
msgid "There are no members in this club."
|
||||||
msgstr "Il n'y a pas de membres dans ce club."
|
msgstr "Il n'y a pas de membres dans ce club."
|
||||||
|
|
||||||
#: club/templates/club/club_members.jinja core/templates/core/file_detail.jinja
|
|
||||||
#: core/views/forms.py trombi/templates/trombi/detail.jinja
|
|
||||||
msgid "Add"
|
|
||||||
msgstr "Ajouter"
|
|
||||||
|
|
||||||
#: club/templates/club/club_old_members.jinja
|
#: club/templates/club/club_old_members.jinja
|
||||||
msgid "Club old members"
|
msgid "Club old members"
|
||||||
msgstr "Anciens membres du club"
|
msgstr "Anciens membres du club"
|
||||||
@@ -569,6 +568,12 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Sauver"
|
msgstr "Sauver"
|
||||||
|
|
||||||
|
#: club/templates/club/fragments/add_member.jinja
|
||||||
|
#: core/templates/core/file_detail.jinja core/views/forms.py
|
||||||
|
#: trombi/templates/trombi/detail.jinja
|
||||||
|
msgid "Add"
|
||||||
|
msgstr "Ajouter"
|
||||||
|
|
||||||
#: club/templates/club/mailing.jinja
|
#: club/templates/club/mailing.jinja
|
||||||
msgid "Mailing lists"
|
msgid "Mailing lists"
|
||||||
msgstr "Mailing listes"
|
msgstr "Mailing listes"
|
||||||
|
Reference in New Issue
Block a user