6 lines
137 B
Python
6 lines
137 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from django.contrib import admin
|
|
from frontend.models import ProjectContext
|
|
|
|
admin.site.register(ProjectContext) |