mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
9 lines
136 B
Python
9 lines
136 B
Python
from django.contrib import admin
|
|
|
|
from .models import Project
|
|
|
|
|
|
@admin.register(Project)
|
|
class ProjectAdmin(admin.ModelAdmin):
|
|
pass
|