2014-07-25 13:53:01 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2014-07-25 11:20:10 +02:00
|
|
|
from django.contrib import admin
|
2014-07-28 13:20:13 +02:00
|
|
|
from frontend.models import ProjectContext
|
2014-07-25 11:20:10 +02:00
|
|
|
|
2014-07-28 13:20:13 +02:00
|
|
|
admin.site.register(ProjectContext)
|