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