This repository has been archived on 2019-11-11. You can view files and clone it, but cannot push or open issues or pull requests.
tofu/projects/admin.py

6 lines
92 B
Python

from django.contrib import admin
from .models import Project
admin.site.register(Project)