OpenSlides/openslides/system/admin.py
2012-02-15 12:04:11 +01:00

17 lines
362 B
Python

#!/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
from system.models import ConfigStore
admin.site.register(ConfigStore)