git.ithinksw.org
/
philo.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Fixing a double declaration of the monthname filter, and renaming ap_monthname to...
[philo.git]
/
admin
/
base.py
diff --git
a/admin/base.py
b/admin/base.py
index
bdf9f38
..
457db17
100644
(file)
--- a/
admin/base.py
+++ b/
admin/base.py
@@
-29,4
+29,7
@@
class EntityAdmin(admin.ModelAdmin):
save_on_top = True
-admin.site.register(Tag)
\ No newline at end of file
+class TagAdmin(admin.ModelAdmin):
+ prepopulated_fields = {"slug": ("name",)}
+
+admin.site.register(Tag, TagAdmin)
\ No newline at end of file