mirror of
https://gitlab.crans.org/bde/nk20
synced 2025-02-24 17:11:18 +00:00
Compare commits
18 Commits
484918f264
...
5d52183852
Author | SHA1 | Date | |
---|---|---|---|
|
5d52183852 | ||
|
29509b5b26 | ||
|
0d64ad31e0 | ||
|
5781cbd6a5 | ||
|
5295e61a00 | ||
|
e79ed6226a | ||
|
68152e6354 | ||
|
b8cc297baf | ||
|
cd8224f2e0 | ||
|
3c882a7854 | ||
|
357e1bbaa2 | ||
|
f5c4c58525 | ||
|
dafb602b08 | ||
|
5b377e6a75 | ||
|
28bd62531e | ||
|
b3a31c27a5 | ||
|
dde1baa25c | ||
|
7a7ee47e0b |
1
.gitignore
vendored
1
.gitignore
vendored
@ -48,7 +48,6 @@ backups/
|
|||||||
env/
|
env/
|
||||||
venv/
|
venv/
|
||||||
db.sqlite3
|
db.sqlite3
|
||||||
shell.nix
|
|
||||||
|
|
||||||
# ansibles customs host
|
# ansibles customs host
|
||||||
ansible/host_vars/*.yaml
|
ansible/host_vars/*.yaml
|
||||||
|
18
apps/treasury/migrations/0007_auto_20240311_1549.py
Normal file
18
apps/treasury/migrations/0007_auto_20240311_1549.py
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
# Generated by Django 2.2.28 on 2024-03-11 14:49
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('treasury', '0006_auto_20230414_1651'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='invoice',
|
||||||
|
name='bde',
|
||||||
|
field=models.CharField(choices=[('RavePartlist', 'RavePart[list]'), ('SecretStorlist', 'SecretStor[list]'), ('TotalistSpies', 'Tota[list]Spies'), ('Saperlistpopette', 'Saper[list]popette'), ('Finalist', 'Fina[list]'), ('Listorique', '[List]orique'), ('Satellist', 'Satel[list]'), ('Monopolist', 'Monopo[list]'), ('Kataclist', 'Katac[list]')], default='RavePartlist', max_length=32, verbose_name='BDE'),
|
||||||
|
),
|
||||||
|
]
|
@ -27,8 +27,9 @@ class Invoice(models.Model):
|
|||||||
|
|
||||||
bde = models.CharField(
|
bde = models.CharField(
|
||||||
max_length=32,
|
max_length=32,
|
||||||
default='SecretStorlist',
|
default='RavePartlist',
|
||||||
choices=(
|
choices=(
|
||||||
|
('RavePartlist', 'RavePart[list]'),
|
||||||
('SecretStorlist', 'SecretStor[list]'),
|
('SecretStorlist', 'SecretStor[list]'),
|
||||||
('TotalistSpies', 'Tota[list]Spies'),
|
('TotalistSpies', 'Tota[list]Spies'),
|
||||||
('Saperlistpopette', 'Saper[list]popette'),
|
('Saperlistpopette', 'Saper[list]popette'),
|
||||||
|
BIN
apps/treasury/static/img/RavePartlist.png
Normal file
BIN
apps/treasury/static/img/RavePartlist.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1007 KiB |
BIN
apps/treasury/static/img/RavePartlist_bg.jpg
Normal file
BIN
apps/treasury/static/img/RavePartlist_bg.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 196 KiB |
@ -128,6 +128,14 @@ Le script s'appelle ``extract_ml_registrations``.
|
|||||||
Il a pour but d'extraire une liste d'adresses mail pour les inclure directement dans les listes
|
Il a pour but d'extraire une liste d'adresses mail pour les inclure directement dans les listes
|
||||||
de diffusion utiles.
|
de diffusion utiles.
|
||||||
|
|
||||||
|
.. caution::
|
||||||
|
|
||||||
|
Vous récupérez les adresses mails de personnes qui ont donné leur consentement afin que leur
|
||||||
|
mail ne soit utilié uniquement à des fins BDE.
|
||||||
|
|
||||||
|
Faîtes attention, donc où la sortie est stockée.
|
||||||
|
|
||||||
|
|
||||||
Il prend 2 options :
|
Il prend 2 options :
|
||||||
|
|
||||||
* ``--type``, qui prend en argument ``members`` (défaut), ``clubs``, ``events``, ``art``,
|
* ``--type``, qui prend en argument ``members`` (défaut), ``clubs``, ``events``, ``art``,
|
||||||
@ -137,6 +145,9 @@ Il prend 2 options :
|
|||||||
à ``all.bda@lists.crans.org`` et enfin à ``bds@lists.crans.org``.
|
à ``all.bda@lists.crans.org`` et enfin à ``bds@lists.crans.org``.
|
||||||
* ``--lang``, qui prend en argument ``fr`` ou ``en``. N'est utile que pour la ML événements,
|
* ``--lang``, qui prend en argument ``fr`` ou ``en``. N'est utile que pour la ML événements,
|
||||||
qui a pour projet d'être disponible à la fois en anglais et en français.
|
qui a pour projet d'être disponible à la fois en anglais et en français.
|
||||||
|
* ``--years``, qui prend en argument un nombre ``n`` (``0`` par défaut). N'est utile que
|
||||||
|
pour la ML Adhérents, pour exporter les mails des adhérents au BDE pendant n'importe
|
||||||
|
laquelle des ``n+1`` dernières années.
|
||||||
|
|
||||||
Le script sort sur la sortie standard la liste des adresses mails à inscrire.
|
Le script sort sur la sortie standard la liste des adresses mails à inscrire.
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@ mark {
|
|||||||
/* background-color: rgb(18, 67, 4) !important; */
|
/* background-color: rgb(18, 67, 4) !important; */
|
||||||
/* MODE VIEUXCON=ON */
|
/* MODE VIEUXCON=ON */
|
||||||
/* background-color: rgb(166, 0, 2) !important; */
|
/* background-color: rgb(166, 0, 2) !important; */
|
||||||
background-color: rgb(0, 0, 0) !important;
|
background-color: rgb(100, 30, 100) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
html {
|
html {
|
||||||
@ -83,81 +83,81 @@ body {
|
|||||||
.btn-outline-primary:hover,
|
.btn-outline-primary:hover,
|
||||||
.btn-outline-primary:not(:disabled):not(.disabled).active,
|
.btn-outline-primary:not(:disabled):not(.disabled).active,
|
||||||
.btn-outline-primary:not(:disabled):not(.disabled):active {
|
.btn-outline-primary:not(:disabled):not(.disabled):active {
|
||||||
color: rgb(241, 229, 52);
|
color: rgb(240, 200, 240);
|
||||||
background-color: rgb(228, 35, 132);
|
background-color: rgb(30, 120, 150);
|
||||||
border-color: rgb(228, 35, 132);
|
border-color: rgb(190, 150, 190);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-outline-primary {
|
.btn-outline-primary {
|
||||||
color: #fff;
|
color: #a2a;
|
||||||
background-color: #000;
|
background-color: #6bc;
|
||||||
border-color: #464647;
|
border-color: #719;
|
||||||
}
|
}
|
||||||
|
|
||||||
.turbolinks-progress-bar {
|
.turbolinks-progress-bar {
|
||||||
background-color: #12432E;
|
background-color: #12342E;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary:hover,
|
.btn-primary:hover,
|
||||||
.btn-primary:not(:disabled):not(.disabled).active,
|
.btn-primary:not(:disabled):not(.disabled).active,
|
||||||
.btn-primary:not(:disabled):not(.disabled):active {
|
.btn-primary:not(:disabled):not(.disabled):active {
|
||||||
color: rgb(241, 229, 52);
|
color: rgb(150, 200, 240);
|
||||||
background-color: rgb(228, 35, 132);
|
background-color: rgb(50, 100, 140);
|
||||||
border-color: rgb(228, 35, 132);
|
border-color: rgb(0, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary {
|
.btn-primary {
|
||||||
color: #fff;
|
color: #eae;
|
||||||
background-color: #000;
|
background-color: #616;
|
||||||
border-color: #adb5bd;
|
border-color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.border-primary {
|
.border-primary {
|
||||||
border-color: rgb(228, 35, 132) !important;
|
border-color: rgb(222, 180, 222) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-secondary {
|
.btn-secondary {
|
||||||
color: #fff;
|
color: #eae;
|
||||||
background-color: #000;
|
background-color: #616;
|
||||||
border-color: #adb5bd;
|
border-color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-secondary:hover,
|
.btn-secondary:hover,
|
||||||
.btn-secondary:not(:disabled):not(.disabled).active,
|
.btn-secondary:not(:disabled):not(.disabled).active,
|
||||||
.btn-secondary:not(:disabled):not(.disabled):active {
|
.btn-secondary:not(:disabled):not(.disabled):active {
|
||||||
color: rgb(241, 229, 52);
|
color: rgb(150, 200, 240);
|
||||||
background-color: rgb(228, 35, 132);
|
background-color: rgb(50, 100, 140);
|
||||||
border-color: rgb(228, 35, 132);
|
border-color: rgb(0, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.btn-outline-dark {
|
.btn-outline-dark {
|
||||||
color: #343a40;
|
color: #000000;
|
||||||
border-color: #343a40;
|
border-color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-outline-dark:hover,
|
.btn-outline-dark:hover,
|
||||||
.btn-outline-dark:not(:disabled):not(.disabled).active,
|
.btn-outline-dark:not(:disabled):not(.disabled).active,
|
||||||
.btn-outline-dark:not(:disabled):not(.disabled):active {
|
.btn-outline-dark:not(:disabled):not(.disabled):active {
|
||||||
color: rgb(241, 229, 52);
|
color: rgb(50, 100, 160);
|
||||||
background-color: rgb(228, 35, 132);
|
background-color: rgb(240, 150, 240);
|
||||||
border-color: rgb(228, 35, 132);
|
border-color: rgb(50, 100, 160);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: rgb(228, 35, 132);
|
color: rgb(0, 150, 150);
|
||||||
}
|
}
|
||||||
|
|
||||||
a:hover {
|
a:hover {
|
||||||
color: rgb(228, 35, 132);
|
color: rgb(200, 0, 200);
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-control:focus {
|
.form-control:focus {
|
||||||
box-shadow: 0 0 0 0.25rem rgb(228 35 132 / 50%);
|
box-shadow: 0 0 0 0.25rem rgb(0 150 150 / 50%);
|
||||||
border-color: rgb(228, 35, 132);
|
border-color: rgb(0, 200, 200);
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-outline-primary.focus {
|
.btn-outline-primary.focus {
|
||||||
box-shadow: 0 0 0 0.25rem rgb(228 35 132 / 10%);
|
box-shadow: 0 0 0 0.25rem rgb(0 150 150 / 22%);
|
||||||
}
|
}
|
||||||
|
34
shell-static.nix
Executable file
34
shell-static.nix
Executable file
@ -0,0 +1,34 @@
|
|||||||
|
# This is a workaround meant for use with the nix package manager. If you don't know what it is or don't use it, please ignore this file.
|
||||||
|
#
|
||||||
|
# The nk20 javascript static location are hardcoded for imperative system.
|
||||||
|
# This make ./manage.py collectstatic hard to use with nixos.
|
||||||
|
#
|
||||||
|
# A workaround is to enter a FHSUserEnv with the static placed under /share/javascript/<static>.
|
||||||
|
# This emulate a debian like system and enable collecting static normally with ./manage.py collectstatics.
|
||||||
|
# The regular shell.nix should be enough for other configurations.
|
||||||
|
#
|
||||||
|
# Warning, you are still supposed to use pip package with a venv !
|
||||||
|
{ pkgs ? import <nixpkgs> {} }:
|
||||||
|
(pkgs.buildFHSUserEnv {
|
||||||
|
name = "pipzone";
|
||||||
|
targetPkgs = pkgs: (with pkgs;
|
||||||
|
let
|
||||||
|
fhs-static = stdenv.mkDerivation {
|
||||||
|
name = "fhs-static";
|
||||||
|
buildCommand = ''
|
||||||
|
mkdir -p $out/share/javascript/bootstrap4
|
||||||
|
mkdir -p $out/share/javascript/jquery
|
||||||
|
ln -s ${python39Packages.xstatic-bootstrap}/lib/python3.9/site-packages/xstatic/pkg/bootstrap/data/* $out/share/javascript/bootstrap4
|
||||||
|
ln -s ${python39Packages.xstatic-jquery}/lib/python3.9/site-packages/xstatic/pkg/jquery/data/* $out/share/javascript/jquery
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
in [
|
||||||
|
fhs-static
|
||||||
|
python39
|
||||||
|
gettext
|
||||||
|
python39Packages.pip
|
||||||
|
python39Packages.virtualenv
|
||||||
|
python39Packages.setuptools
|
||||||
|
]);
|
||||||
|
runScript = "bash";
|
||||||
|
}).env
|
23
shell.nix
Executable file
23
shell.nix
Executable file
@ -0,0 +1,23 @@
|
|||||||
|
# This is meant for use with the nix package manager. If you don't know what it is or don't use it, please ignore this file.
|
||||||
|
#
|
||||||
|
# This shell.nix contains all dependencies require to create a venv and pip install -r requirements.txt.
|
||||||
|
#
|
||||||
|
# Please check shell-static.nix for running ./manage.py collectstatics.
|
||||||
|
{ pkgs ? import <nixpkgs> {} }:
|
||||||
|
pkgs.mkShell {
|
||||||
|
buildInputs = with pkgs; [
|
||||||
|
python39
|
||||||
|
python39Packages.pip
|
||||||
|
python39Packages.setuptools
|
||||||
|
gettext
|
||||||
|
|
||||||
|
];
|
||||||
|
shellHook = ''
|
||||||
|
# Tells pip to put packages into $PIP_PREFIX instead of the usual locations.
|
||||||
|
# See https://pip.pypa.io/en/stable/user_guide/#environment-variables.
|
||||||
|
export PIP_PREFIX=$(pwd)/_build/pip_packages
|
||||||
|
export PYTHONPATH="$PIP_PREFIX/${pkgs.python39.sitePackages}:$PYTHONPATH"
|
||||||
|
export PATH="$PIP_PREFIX/bin:$PATH"
|
||||||
|
unset SOURCE_DATE_EPOCH
|
||||||
|
'';
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user