odsreg/cfp/admin.py
Thierry Carrez d6def4d665 Expose Comments in admin site
Expose the Comment table on the admin site for quick comment fixorz.

Change-Id: Ib9015b5490da16005a198a5aeca23ebd526f3ddf
2013-09-10 11:23:01 +02:00

24 lines
864 B
Python

# Copyright 2011 Thierry Carrez <thierry@openstack.org>
# All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
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)