Ajout de la note de progression pour un jeu donné
This commit is contained in:
@ -35,13 +35,17 @@ class GameAdmin(admin.ModelAdmin):
|
||||
'playing',
|
||||
'wish']
|
||||
search_fields = ('name',)
|
||||
fields = [
|
||||
'name',
|
||||
'collection',
|
||||
'status',
|
||||
'playing',
|
||||
'unplayed',
|
||||
'wish'
|
||||
fieldsets = [
|
||||
(_('Game Information'), {
|
||||
'fields': [
|
||||
('name', 'collection')]}),
|
||||
(_('Progress'),
|
||||
{'fields': [
|
||||
('status'),
|
||||
('note')]}),
|
||||
('',
|
||||
{'fields': [
|
||||
('playing'), ('unplayed'), ('wish')]})
|
||||
]
|
||||
|
||||
form = GameForm
|
||||
|
Reference in New Issue
Block a user