Expose Comments in admin site

Expose the Comment table on the admin site for quick comment fixorz.

Change-Id: Ib9015b5490da16005a198a5aeca23ebd526f3ddf
This commit is contained in:
Thierry Carrez 2013-09-10 11:23:01 +02:00
parent ae269834b5
commit d6def4d665
1 changed files with 2 additions and 1 deletions

View File

@ -13,10 +13,11 @@
# License for the specific language governing permissions and limitations
# under the License.
from odsreg.cfp.models import Topic, Proposal, Event
from odsreg.cfp.models import Topic, Proposal, Event, Comment
from django.contrib import admin
admin.site.register(Topic)
admin.site.register(Proposal)
admin.site.register(Event)
admin.site.register(Comment)