mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-06 07:45:08 +02:00
6 lines
135 B
Python
Executable File
6 lines
135 B
Python
Executable File
from django.contrib import admin
|
|
from pyapp.models import ShoppingItem
|
|
|
|
# Register your models here.
|
|
admin.site.register(ShoppingItem)
|