7 lines
187 B
Python
7 lines
187 B
Python
|
|
from django.contrib import admin
|
||
|
|
from .models import DomaineDeRecherche
|
||
|
|
|
||
|
|
@admin.register(DomaineDeRecherche)
|
||
|
|
class DomaineDeRecherche(admin.ModelAdmin):
|
||
|
|
list_display = ('nom',)
|