Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
site-kwei
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
aeltheos
site-kwei
Commits
275d79e2
Commit
275d79e2
authored
4 years ago
by
Dorian Lesbre
Browse files
Options
Downloads
Patches
Plain Diff
Prettier (and more functionnal) admin website:
- french names - export to csv action - display mutliple columns
parent
897bdf93
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
home/admin.py
+51
-3
51 additions, 3 deletions
home/admin.py
home/models.py
+16
-5
16 additions, 5 deletions
home/models.py
home/templates/activites.html
+1
-1
1 addition, 1 deletion
home/templates/activites.html
with
68 additions
and
9 deletions
home/admin.py
+
51
−
3
View file @
275d79e2
import
csv
from
django.contrib
import
admin
from
django.http
import
HttpResponse
from
home.models
import
InterludesActivity
,
InterludesParticipant
,
ActivityList
admin
.
site
.
register
(
InterludesActivity
)
admin
.
site
.
register
(
InterludesParticipant
)
admin
.
site
.
register
(
ActivityList
)
# Titre de la vue (objet <h1> dans le html)
admin
.
site
.
site_header
=
"
Administration site interludes
"
class
ExportCsvMixin
:
"""
class abstraite pour permettre l
'
export CSV rapide d
'
un modele
"""
def
export_as_csv
(
self
,
request
,
queryset
):
"""
renvoie un fichier CSV contenant l
'
information du queryset
"""
meta
=
self
.
model
.
_meta
field_names
=
[
field
.
name
for
field
in
meta
.
fields
]
response
=
HttpResponse
(
content_type
=
'
text/csv
'
)
response
[
'
Content-Disposition
'
]
=
'
attachment; filename={}.csv
'
.
format
(
meta
)
writer
=
csv
.
writer
(
response
)
writer
.
writerow
(
field_names
)
for
obj
in
queryset
:
writer
.
writerow
([
getattr
(
obj
,
field
)
for
field
in
field_names
])
return
response
export_as_csv
.
short_description
=
"
Exporter au format CSV
"
actions
=
[
"
export_as_csv
"
]
@admin.register
(
InterludesActivity
)
class
InterludesActivityAdmin
(
admin
.
ModelAdmin
,
ExportCsvMixin
):
"""
option d
'
affichage des activités dans la vue django admin
"""
list_display
=
(
"
title
"
,
"
host_name
"
,
"
display
"
,
"
must_subscribe
"
,)
list_filter
=
(
"
display
"
,
"
must_subscribe
"
,)
ordering
=
(
"
title
"
,
"
host_name
"
,)
list_editable
=
(
"
display
"
,)
list_per_page
=
100
@admin.register
(
InterludesParticipant
)
class
InterludesParticipantAdmin
(
admin
.
ModelAdmin
,
ExportCsvMixin
):
"""
option d
'
affichage des participant dans la vue django admin
"""
list_display
=
(
"
name
"
,
"
school
"
,)
list_filter
=
(
"
school
"
,)
ordering
=
(
"
name
"
,)
list_per_page
=
200
@admin.register
(
ActivityList
)
class
ActivityListAdmin
(
admin
.
ModelAdmin
,
ExportCsvMixin
):
"""
option d
'
affichage des choix d
'
activités dans la vue django admin
"""
list_display
=
(
"
participant
"
,
"
priority
"
,
"
activity
"
,)
list_filter
=
(
"
activity
"
,
"
participant
"
,)
ordering
=
(
"
participant
"
,
"
priority
"
,)
list_per_page
=
200
This diff is collapsed.
Click to expand it.
home/models.py
+
16
−
5
View file @
275d79e2
...
...
@@ -2,7 +2,6 @@ from django.contrib.auth.models import User
from
django.db
import
models
from
django.utils.translation
import
gettext_lazy
as
_
# Create your models here.
class
InterludesActivity
(
models
.
Model
):
"""
une activité des interludes (i.e. JDR, murder)...
"""
title
=
models
.
CharField
(
"
Titre
"
,
max_length
=
200
)
...
...
@@ -14,7 +13,7 @@ class InterludesActivity(models.Model):
"
Nombre minimum de participants
"
)
display
=
models
.
BooleanField
(
"
Afficher cette activité
"
,
default
=
False
)
must_
book
=
models
.
BooleanField
(
"
Nécessite
inscription
"
,
default
=
False
)
must_
subscribe
=
models
.
BooleanField
(
"
Sur
inscription
"
,
default
=
False
)
host_name
=
models
.
CharField
(
"
Nom de l
'
organisateur
"
,
max_length
=
50
)
host_email
=
models
.
EmailField
(
"
Email de l
'
organisateur
"
)
description
=
models
.
TextField
(
"
Description
"
,
max_length
=
2000
)
...
...
@@ -28,6 +27,9 @@ class InterludesActivity(models.Model):
def
__str__
(
self
):
return
self
.
title
class
Meta
:
verbose_name
=
"
activité
"
class
InterludesParticipant
(
models
.
Model
):
"""
un participant aux interludes
"""
...
...
@@ -47,15 +49,24 @@ class InterludesParticipant(models.Model):
def
__str__
(
self
)
->
str
:
return
"
{} ({})
"
.
format
(
self
.
name
,
self
.
school
)
class
Meta
:
verbose_name
=
"
participant
"
class
ActivityList
(
models
.
Model
):
"""
liste d
'
activités souhaitée de chaque participant,
avec un order de priorité
"""
priority
=
models
.
PositiveIntegerField
()
participant
=
models
.
ForeignKey
(
InterludesParticipant
,
on_delete
=
models
.
CASCADE
)
activite
=
models
.
ForeignKey
(
InterludesActivity
,
on_delete
=
models
.
CASCADE
)
priority
=
models
.
PositiveIntegerField
(
"
priorité
"
)
participant
=
models
.
ForeignKey
(
InterludesParticipant
,
on_delete
=
models
.
CASCADE
,
db_column
=
"
participant
"
)
activity
=
models
.
ForeignKey
(
InterludesActivity
,
on_delete
=
models
.
CASCADE
,
db_column
=
"
activité
"
)
class
Meta
:
# le couple participant, priority est unique
unique_together
=
((
"
priority
"
,
"
participant
"
))
ordering
=
(
"
participant
"
,
"
priority
"
)
verbose_name
=
"
choix d
'
activités
"
verbose_name_plural
=
"
choix d
'
activités
"
This diff is collapsed.
Click to expand it.
home/templates/activites.html
+
1
−
1
View file @
275d79e2
...
...
@@ -15,7 +15,7 @@
<dt>
Durée :
</dt><dd>
{{ activity.duration }}
</dd>
<dt>
MJ :
</dt><dd>
{{ activity.host_name }}
</dd>
<dt>
Nombre de places :
</dt><dd>
{{ activity.nb_participants }}
</dd>
<dt>
Sur inscription :
</dt><dd>
{% if activity.must_
book
%} Oui {% else %} Non {% endif %}
</dd>
<dt>
Sur inscription :
</dt><dd>
{% if activity.must_
subscribe
%} Oui {% else %} Non {% endif %}
</dd>
<dt>
Description :
</dt><dd>
{{ activity.description|linebreaksbr }}
</dd>
</dl>
{% endfor %}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment