]> git.p6c8.net - pcdenotes.git/blobdiff - notes/admin.py
Automatically generate slug using the title
[pcdenotes.git] / notes / admin.py
index c2c09e5edf7652377e2f033d728d9a9fd00b0e6f..2dd4171e9e26ad0d7436d52a29b4d334121d2133 100644 (file)
@@ -7,6 +7,6 @@ class NoteAdmin(admin.ModelAdmin):
     list_display = ('title', 'status',)
     list_filter = ('status',)
     search_fields = ('title', 'content',)
-
+    prepopulated_fields = {'slug': ('title',)}
 
 admin.site.register(Note, NoteAdmin)
\ No newline at end of file

patrick-canterino.de