10 lines
202 B
Python
10 lines
202 B
Python
from django.contrib import admin
|
|
|
|
from . import models
|
|
|
|
|
|
@admin.register(models.Comment)
|
|
class CommentModelAdmin(admin.ModelAdmin):
|
|
"""Model admin for model Comment"""
|
|
raw_id_fields = ('user',)
|