mirror of
https://github.com/Rushilwiz/todos.git
synced 2025-04-09 23:00:17 -04:00
5 lines
113 B
Python
5 lines
113 B
Python
from django.contrib import admin
|
|
from .models import Task
|
|
|
|
# Register your models here.
|
|
admin.site.register(Task) |