django.apps.AppConfig
housing.apps.HousingConfig
- This is configuration for Housing Module.django.db.migrations.Migration
housing.migrations.0001_initial.Migration
- Intital Database Schemahousing.migrations.0002_alter_owner_contact_email_alter_user_contact_email.Migration
- Modifying email fieldhousing.migrations.0002_alter_owner_contact_email_alter_user_contact_email_and_more.Migration
- Altering field names in Owner and User Databasehousing.migrations.0003_alter_interested_flat_id.Migration
- Adding foreign keys in Interested Databasehousing.migrations.0004_merge_20221009_1347.Migration
- Updated housing Databasedjango.db.models.Model
housing.models.Apartment
- This is Apartment database structure.housing.models.Flat
- This is Flat database structure.housing.models.Interested
- This is Interested database structure.housing.models.Lease
- This is Lease database structure.housing.models.Owner
- This is a Owner database structure.housing.models.User
- This is User database structure.django.test.TestCase
housing.tests.ApartmentTests
- This is Apartment test class.housing.tests.FlatTests
- This is Flat test class.housing.tests.InterestedTests
- This is Interested test class.housing.tests.LeaseTests
- This is Lease test class.housing.tests.UserTests
- This is User test class.housing.serializers.ApartmentSerializer.Meta
- This class contains fields to be serialized.housing.serializers.FlatSerializer.Meta
- This class contains fields to be serialized.housing.serializers.InterestedSerializer.Meta
- This class contains fields to be serialized.housing.serializers.LeaseSerializer.Meta
- This class contains fields to be serialized.housing.serializers.OwnerSerializer.Meta
- This class contains fields to be serialized.housing.serializers.UserSerializer.Meta
- This class contains fields to be serialized.rest_framework.generics.ListCreateAPIView
housing.views.ApartmentViewSet
- This viewset automatically provides CRUD actions for Apartment model.housing.views.FlatViewSet
- This viewset automatically provides CRUD actions for Flat model.housing.views.InterestedViewSet
- This viewset automatically provides CRUD actions for Interested model.housing.views.LeaseViewSet
- This viewset automatically provides CRUD actions for Lease model.housing.views.OwnerViewSet
- This viewset automatically provides CRUD actions for Owner model.housing.views.UserViewSet
- This viewset automatically provides CRUD actions for User model.rest_framework.generics.RetrieveUpdateDestroyAPIView
housing.views.ApartmentViewSet
- This viewset automatically provides CRUD actions for Apartment model.housing.views.FlatViewSet
- This viewset automatically provides CRUD actions for Flat model.housing.views.InterestedViewSet
- This viewset automatically provides CRUD actions for Interested model.housing.views.LeaseViewSet
- This viewset automatically provides CRUD actions for Lease model.housing.views.OwnerViewSet
- This viewset automatically provides CRUD actions for Owner model.housing.views.UserViewSet
- This viewset automatically provides CRUD actions for User model.rest_framework.serializers.ModelSerializer
housing.serializers.ApartmentSerializer
- This is ApartmentSerializer for Apartment model.housing.serializers.FlatSerializer
- This is FlatSerializer for Flat model.housing.serializers.InterestedSerializer
- This is InterestedSerializer for Interested model.housing.serializers.LeaseSerializer
- This is LeaseSerializer for Lease model.housing.serializers.OwnerSerializer
- This is OwnerSerializer for Owner model.housing.serializers.UserSerializer
- This is UserSerializer for User model.rest_framework.test.APITestCase
housing.tests.ApartmentTests
- This is Apartment test class.housing.tests.FlatTests
- This is Flat test class.housing.tests.InterestedTests
- This is Interested test class.housing.tests.LeaseTests
- This is Lease test class.housing.tests.OwnerTests
- This is Owner test class.housing.tests.UserTests
- This is User test class.