Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from news.models import News
- from django.contrib import admin
- class NewsAdmin(admin.ModelAdmin):
- readonly_fields = ('author',)
- ordering = ['-publishDate']
- def save_model(self, request, obj, form, change):
- if (not change):
- obj.author = request.user
- obj.save()
- admin.site.register(News, NewsAdmin)
Advertisement
Add Comment
Please, Sign In to add comment