OpenSlides/openslides/system/admin.py

17 lines
362 B
Python
Raw Normal View History

2011-07-31 10:46:29 +02:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
openslides.system.admin
~~~~~~~~~~~~~~~~~~~~~~~
Register app for admin site.
:copyright: 2011 by the OpenSlides team, see AUTHORS.
:license: GNU GPL, see LICENSE for more details.
"""
from django.contrib import admin
2012-02-15 12:04:11 +01:00
from system.models import ConfigStore
2011-07-31 10:46:29 +02:00
2012-02-15 12:04:11 +01:00
admin.site.register(ConfigStore)