change references to new models

This commit is contained in:
2025-09-05 11:37:27 +02:00
parent c457f0bc12
commit 4a175b2b85
2 changed files with 5 additions and 4 deletions

View File

@@ -1,8 +1,8 @@
from django.contrib import admin
from .models import Letting
from .models import Address
from .models import Profile
from lettings.models import Letting
from lettings.models import Address
from profiles.models import Profile
admin.site.register(Letting)

View File

@@ -1,5 +1,6 @@
from django.shortcuts import render
from .models import Letting, Profile
from lettings.models import Letting
from profiles.models import Profile