Browse Source

affichage du champs de notes des adhesions

Élie Bouttier 7 years ago
parent
commit
868e566b08
1 changed files with 1 additions and 1 deletions
  1. 1 1
      adhesions/admin.py

+ 1 - 1
adhesions/admin.py

@@ -154,7 +154,7 @@ class AdherentTypeFilter(admin.SimpleListFilter):
 class AdhesionAdmin(admin.ModelAdmin):
     list_display = ('get_id', 'get_adherent_link', 'type',)
     list_filter = (AdherentTypeFilter,)
-    fields = ('id', 'type', 'get_adherent_link',)
+    fields = ('id', 'type', 'get_adherent_link', 'notes')
     readonly_fields = ('id', 'type', 'get_adherent_link',)
     search_fields = ('id',)
     inlines = (ServiceInline,)#PaymentInline,)