├── .gitignore ├── .vscode └── settings.json ├── Pipfile ├── Pipfile.lock ├── README.md ├── accounts ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── contacts ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── hyd_realtors ├── __init__.py ├── settings.py ├── static │ ├── css │ │ ├── admin.css │ │ ├── all.css │ │ ├── bootstrap.css │ │ ├── lightbox.min.css │ │ └── style.css │ ├── img │ │ ├── about.jpg │ │ ├── building.jpg │ │ ├── lightbox │ │ │ ├── close.png │ │ │ ├── loading.gif │ │ │ ├── next.png │ │ │ └── prev.png │ │ ├── logo.png │ │ └── showcase.jpg │ ├── js │ │ ├── bootstrap.bundle.min.js │ │ ├── jquery-3.3.1.min.js │ │ ├── lightbox.min.js │ │ └── main.js │ └── webfonts │ │ ├── fa-brands-400.eot │ │ ├── fa-brands-400.svg │ │ ├── fa-brands-400.ttf │ │ ├── fa-brands-400.woff │ │ ├── fa-brands-400.woff2 │ │ ├── fa-regular-400.eot │ │ ├── fa-regular-400.svg │ │ ├── fa-regular-400.ttf │ │ ├── fa-regular-400.woff │ │ ├── fa-regular-400.woff2 │ │ ├── fa-solid-900.eot │ │ ├── fa-solid-900.svg │ │ ├── fa-solid-900.ttf │ │ ├── fa-solid-900.woff │ │ └── fa-solid-900.woff2 ├── urls.py └── wsgi.py ├── listings ├── __init__.py ├── admin.py ├── apps.py ├── choices.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── pages ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── realtors ├── __init__.py ├── admin.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── tests.py └── views.py └── templates ├── accounts ├── dashboard.html ├── login.html └── register.html ├── admin └── base_site.html ├── base.html ├── listings ├── listing.html ├── listings.html └── search.html ├── pages ├── about.html └── index.html └── partials ├── _alerts.html ├── _footer.html ├── _navbar.html └── _topbar.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/README.md -------------------------------------------------------------------------------- /accounts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/accounts/admin.py -------------------------------------------------------------------------------- /accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/accounts/apps.py -------------------------------------------------------------------------------- /accounts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/accounts/models.py -------------------------------------------------------------------------------- /accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/accounts/tests.py -------------------------------------------------------------------------------- /accounts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/accounts/urls.py -------------------------------------------------------------------------------- /accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/accounts/views.py -------------------------------------------------------------------------------- /contacts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contacts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/contacts/admin.py -------------------------------------------------------------------------------- /contacts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/contacts/apps.py -------------------------------------------------------------------------------- /contacts/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/contacts/migrations/0001_initial.py -------------------------------------------------------------------------------- /contacts/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contacts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/contacts/models.py -------------------------------------------------------------------------------- /contacts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/contacts/tests.py -------------------------------------------------------------------------------- /contacts/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/contacts/urls.py -------------------------------------------------------------------------------- /contacts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/contacts/views.py -------------------------------------------------------------------------------- /hyd_realtors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hyd_realtors/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/settings.py -------------------------------------------------------------------------------- /hyd_realtors/static/css/admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/css/admin.css -------------------------------------------------------------------------------- /hyd_realtors/static/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/css/all.css -------------------------------------------------------------------------------- /hyd_realtors/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/css/bootstrap.css -------------------------------------------------------------------------------- /hyd_realtors/static/css/lightbox.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/css/lightbox.min.css -------------------------------------------------------------------------------- /hyd_realtors/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/css/style.css -------------------------------------------------------------------------------- /hyd_realtors/static/img/about.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/img/about.jpg -------------------------------------------------------------------------------- /hyd_realtors/static/img/building.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/img/building.jpg -------------------------------------------------------------------------------- /hyd_realtors/static/img/lightbox/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/img/lightbox/close.png -------------------------------------------------------------------------------- /hyd_realtors/static/img/lightbox/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/img/lightbox/loading.gif -------------------------------------------------------------------------------- /hyd_realtors/static/img/lightbox/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/img/lightbox/next.png -------------------------------------------------------------------------------- /hyd_realtors/static/img/lightbox/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/img/lightbox/prev.png -------------------------------------------------------------------------------- /hyd_realtors/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/img/logo.png -------------------------------------------------------------------------------- /hyd_realtors/static/img/showcase.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/img/showcase.jpg -------------------------------------------------------------------------------- /hyd_realtors/static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /hyd_realtors/static/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /hyd_realtors/static/js/lightbox.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/js/lightbox.min.js -------------------------------------------------------------------------------- /hyd_realtors/static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/js/main.js -------------------------------------------------------------------------------- /hyd_realtors/static/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /hyd_realtors/static/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /hyd_realtors/static/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /hyd_realtors/static/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /hyd_realtors/static/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /hyd_realtors/static/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /hyd_realtors/static/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /hyd_realtors/static/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /hyd_realtors/static/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /hyd_realtors/static/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /hyd_realtors/static/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /hyd_realtors/static/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /hyd_realtors/static/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /hyd_realtors/static/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /hyd_realtors/static/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/static/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /hyd_realtors/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/urls.py -------------------------------------------------------------------------------- /hyd_realtors/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/hyd_realtors/wsgi.py -------------------------------------------------------------------------------- /listings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /listings/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/listings/admin.py -------------------------------------------------------------------------------- /listings/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/listings/apps.py -------------------------------------------------------------------------------- /listings/choices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/listings/choices.py -------------------------------------------------------------------------------- /listings/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/listings/migrations/0001_initial.py -------------------------------------------------------------------------------- /listings/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /listings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/listings/models.py -------------------------------------------------------------------------------- /listings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/listings/tests.py -------------------------------------------------------------------------------- /listings/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/listings/urls.py -------------------------------------------------------------------------------- /listings/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/listings/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/manage.py -------------------------------------------------------------------------------- /pages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/pages/admin.py -------------------------------------------------------------------------------- /pages/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/pages/apps.py -------------------------------------------------------------------------------- /pages/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pages/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/pages/models.py -------------------------------------------------------------------------------- /pages/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/pages/tests.py -------------------------------------------------------------------------------- /pages/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/pages/urls.py -------------------------------------------------------------------------------- /pages/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/pages/views.py -------------------------------------------------------------------------------- /realtors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /realtors/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/realtors/admin.py -------------------------------------------------------------------------------- /realtors/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/realtors/apps.py -------------------------------------------------------------------------------- /realtors/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/realtors/migrations/0001_initial.py -------------------------------------------------------------------------------- /realtors/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /realtors/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/realtors/models.py -------------------------------------------------------------------------------- /realtors/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/realtors/tests.py -------------------------------------------------------------------------------- /realtors/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /templates/accounts/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/templates/accounts/dashboard.html -------------------------------------------------------------------------------- /templates/accounts/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/templates/accounts/login.html -------------------------------------------------------------------------------- /templates/accounts/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/templates/accounts/register.html -------------------------------------------------------------------------------- /templates/admin/base_site.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/templates/admin/base_site.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/listings/listing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/templates/listings/listing.html -------------------------------------------------------------------------------- /templates/listings/listings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/templates/listings/listings.html -------------------------------------------------------------------------------- /templates/listings/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/templates/listings/search.html -------------------------------------------------------------------------------- /templates/pages/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/templates/pages/about.html -------------------------------------------------------------------------------- /templates/pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/templates/pages/index.html -------------------------------------------------------------------------------- /templates/partials/_alerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/templates/partials/_alerts.html -------------------------------------------------------------------------------- /templates/partials/_footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/templates/partials/_footer.html -------------------------------------------------------------------------------- /templates/partials/_navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/templates/partials/_navbar.html -------------------------------------------------------------------------------- /templates/partials/_topbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MZHussain0/Django-RealEstate-Project/HEAD/templates/partials/_topbar.html --------------------------------------------------------------------------------