EasyAppt/website/admin.py

7 lines
177 B
Python
Raw Permalink Normal View History

2021-02-06 02:15:10 +01:00
from django.contrib import admin
from .models import Dest
2021-03-27 17:05:11 +01:00
from booking.models import MyModel
2021-02-06 02:15:10 +01:00
# Register your models here.
2021-03-27 17:05:11 +01:00
admin.site.register(Dest)
admin.site.register(MyModel)