mirror of
https://github.com/Rushilwiz/chirper.git
synced 2025-04-18 03:00:18 -04:00
6 lines
120 B
Python
6 lines
120 B
Python
from django.contrib import admin
|
|
from .models import Profile
|
|
|
|
# Register your models here.
|
|
admin.site.register(Profile)
|