mirror of
https://github.com/rjNemo/villafleurie
synced 2026-06-06 02:16:47 +00:00
* crete setting module to split prod and dev configs * fix calendar midmatch * lint imports using isort * doc: add doctrings
17 lines
516 B
Python
17 lines
516 B
Python
""" Register models and configure admin dashboard """
|
|
|
|
from django.contrib import admin
|
|
|
|
from rental.models.booking import Booking
|
|
from rental.models.contact import Contact
|
|
from rental.models.guest import Guest
|
|
from rental.models.picture import Picture
|
|
from rental.models.place import Place
|
|
from rental.models.testimonial import Testimonial
|
|
|
|
admin.site.register(Booking)
|
|
admin.site.register(Guest)
|
|
admin.site.register(Place)
|
|
admin.site.register(Contact)
|
|
admin.site.register(Picture)
|
|
admin.site.register(Testimonial)
|