├── DBMSProjectProposal.pdf ├── Projectproposal.pdf ├── README.md ├── _config.yml ├── rental ├── db.mysql ├── db.sqlite3 ├── manage.py ├── rental │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── settings.cpython-35.pyc │ │ ├── urls.cpython-35.pyc │ │ └── wsgi.cpython-35.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── rental_system │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── admin.cpython-35.pyc │ │ ├── models.cpython-35.pyc │ │ └── views.cpython-35.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_auto_20170415_0254.py │ │ ├── 0003_auto_20170415_0258.py │ │ ├── 0004_auto_20170415_0313.py │ │ ├── 0005_auto_20170415_0317.py │ │ ├── 0006_auto_20170415_0332.py │ │ ├── 0007_auto_20170415_0336.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ ├── 0002_auto_20170415_0254.cpython-35.pyc │ │ │ ├── 0003_auto_20170415_0258.cpython-35.pyc │ │ │ ├── 0004_auto_20170415_0313.cpython-35.pyc │ │ │ ├── 0005_auto_20170415_0317.cpython-35.pyc │ │ │ ├── 0006_auto_20170415_0332.cpython-35.pyc │ │ │ ├── 0007_auto_20170415_0336.cpython-35.pyc │ │ │ └── __init__.cpython-35.pyc │ ├── models.py │ ├── tests.py │ └── views.py └── templates │ ├── index.html │ └── newpage.html ├── rental1.zip ├── rental1 ├── datadump.json ├── db.MySQL ├── db.sqlite3 ├── manage.py ├── rental1 │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── settings.cpython-35.pyc │ │ ├── urls.cpython-35.pyc │ │ └── wsgi.cpython-35.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── rental_system │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── admin.cpython-35.pyc │ │ ├── models.cpython-35.pyc │ │ └── views.cpython-35.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_property_avg_rating.py │ │ ├── 0003_auto_20170416_1357.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-35.pyc │ │ │ ├── 0002_property_avg_rating.cpython-35.pyc │ │ │ ├── 0003_auto_20170416_1357.cpython-35.pyc │ │ │ └── __init__.cpython-35.pyc │ ├── models.py │ ├── tests.py │ └── views.py ├── static │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── custom.flexslider.css │ │ ├── font-awesome.css │ │ ├── font-awesome.min.css │ │ ├── form-elements.css │ │ ├── framework.css │ │ ├── index.html │ │ ├── layout.css │ │ └── style.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ └── index.html │ ├── images │ │ ├── 01.png │ │ ├── 011.png │ │ ├── 02.png │ │ ├── 03.png │ │ ├── 1.jpg │ │ ├── 1@2x.jpg.jpg │ │ ├── 320x168.png │ │ ├── 320x320.png │ │ ├── City-Skyline-Buliding-Vector.jpg │ │ ├── abstract.jpg │ │ ├── apple-touch-icon-114-precomposed.png │ │ ├── apple-touch-icon-144-precomposed.png │ │ ├── apple-touch-icon-57-precomposed.png │ │ ├── apple-touch-icon-72-precomposed.png │ │ ├── avatar.png │ │ ├── buildingBackground.jpg │ │ ├── favicon.png │ │ ├── house1.jpg │ │ ├── house2.jpg │ │ ├── house3.jpg │ │ ├── house4.jpg │ │ ├── housee.jpg │ │ ├── imgl.gif │ │ ├── imgr.gif │ │ ├── index.html │ │ └── tympass.jpg │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ ├── index.html │ │ ├── jquery-1.11.1.js │ │ ├── jquery-1.11.1.min.js │ │ ├── jquery.backstretch.js │ │ ├── jquery.backstretch.min.js │ │ ├── jquery.backtotop.js │ │ ├── jquery.flexslider-min.js │ │ ├── jquery.min.js │ │ ├── jquery.mobilemenu.js │ │ ├── npm.js │ │ ├── placeholder.js │ │ └── scripts.js └── templates │ ├── addProperty.html │ ├── dashboard.html │ ├── home.html │ ├── login.html │ ├── owner_dashboard.html │ ├── register.html │ ├── register_visitor.html │ ├── view_property.html │ └── visitor_dashboard.html └── static_root_rental ├── admin ├── css │ ├── base.css │ ├── changelists.css │ ├── dashboard.css │ ├── fonts.css │ ├── forms.css │ ├── login.css │ ├── rtl.css │ └── widgets.css ├── fonts │ ├── LICENSE.txt │ ├── README.txt │ ├── Roboto-Bold-webfont.woff │ ├── Roboto-Light-webfont.woff │ └── Roboto-Regular-webfont.woff ├── img │ ├── LICENSE │ ├── README.txt │ ├── calendar-icons.svg │ ├── gis │ │ ├── move_vertex_off.svg │ │ └── move_vertex_on.svg │ ├── icon-addlink.svg │ ├── icon-alert.svg │ ├── icon-calendar.svg │ ├── icon-changelink.svg │ ├── icon-clock.svg │ ├── icon-deletelink.svg │ ├── icon-no.svg │ ├── icon-unknown-alt.svg │ ├── icon-unknown.svg │ ├── icon-yes.svg │ ├── inline-delete.svg │ ├── search.svg │ ├── selector-icons.svg │ ├── sorting-icons.svg │ ├── tooltag-add.svg │ └── tooltag-arrowright.svg └── js │ ├── SelectBox.js │ ├── SelectFilter2.js │ ├── actions.js │ ├── actions.min.js │ ├── admin │ ├── DateTimeShortcuts.js │ └── RelatedObjectLookups.js │ ├── calendar.js │ ├── cancel.js │ ├── change_form.js │ ├── collapse.js │ ├── collapse.min.js │ ├── core.js │ ├── inlines.js │ ├── inlines.min.js │ ├── jquery.init.js │ ├── popup_response.js │ ├── prepopulate.js │ ├── prepopulate.min.js │ ├── prepopulate_init.js │ ├── timeparse.js │ ├── urlify.js │ └── vendor │ ├── jquery │ ├── LICENSE-JQUERY.txt │ ├── jquery.js │ └── jquery.min.js │ └── xregexp │ ├── LICENSE-XREGEXP.txt │ ├── xregexp.js │ └── xregexp.min.js ├── css ├── bootstrap-theme.css ├── bootstrap-theme.css.map ├── bootstrap-theme.min.css ├── bootstrap.css ├── bootstrap.css.map ├── bootstrap.min.css ├── custom.flexslider.css ├── font-awesome.css ├── font-awesome.min.css ├── form-elements.css ├── framework.css ├── index.html ├── layout.css └── style.css ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── fontawesome-webfont.woff2 └── index.html ├── images ├── 01.png ├── 011.png ├── 02.png ├── 03.png ├── 1.jpg ├── 1@2x.jpg.jpg ├── 320x168.png ├── 320x320.png ├── City-Skyline-Buliding-Vector.jpg ├── apple-touch-icon-114-precomposed.png ├── apple-touch-icon-144-precomposed.png ├── apple-touch-icon-57-precomposed.png ├── apple-touch-icon-72-precomposed.png ├── avatar.png ├── buildingBackground.jpg ├── favicon.png ├── house1.jpg ├── house2.jpg ├── house3.jpg ├── house4.jpg ├── imgl.gif ├── imgr.gif ├── index.html └── tympass.jpg └── js ├── bootstrap.js ├── bootstrap.min.js ├── index.html ├── jquery-1.11.1.js ├── jquery-1.11.1.min.js ├── jquery.backstretch.js ├── jquery.backstretch.min.js ├── jquery.backtotop.js ├── jquery.flexslider-min.js ├── jquery.min.js ├── jquery.mobilemenu.js ├── npm.js ├── placeholder.js └── scripts.js /DBMSProjectProposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/DBMSProjectProposal.pdf -------------------------------------------------------------------------------- /Projectproposal.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/Projectproposal.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/_config.yml -------------------------------------------------------------------------------- /rental/db.mysql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rental/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/db.sqlite3 -------------------------------------------------------------------------------- /rental/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/manage.py -------------------------------------------------------------------------------- /rental/rental/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rental/rental/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /rental/rental/__pycache__/settings.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental/__pycache__/settings.cpython-35.pyc -------------------------------------------------------------------------------- /rental/rental/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /rental/rental/__pycache__/wsgi.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental/__pycache__/wsgi.cpython-35.pyc -------------------------------------------------------------------------------- /rental/rental/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental/settings.py -------------------------------------------------------------------------------- /rental/rental/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental/urls.py -------------------------------------------------------------------------------- /rental/rental/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental/wsgi.py -------------------------------------------------------------------------------- /rental/rental_system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rental/rental_system/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /rental/rental_system/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /rental/rental_system/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /rental/rental_system/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /rental/rental_system/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/admin.py -------------------------------------------------------------------------------- /rental/rental_system/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/apps.py -------------------------------------------------------------------------------- /rental/rental_system/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/migrations/0001_initial.py -------------------------------------------------------------------------------- /rental/rental_system/migrations/0002_auto_20170415_0254.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/migrations/0002_auto_20170415_0254.py -------------------------------------------------------------------------------- /rental/rental_system/migrations/0003_auto_20170415_0258.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/migrations/0003_auto_20170415_0258.py -------------------------------------------------------------------------------- /rental/rental_system/migrations/0004_auto_20170415_0313.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/migrations/0004_auto_20170415_0313.py -------------------------------------------------------------------------------- /rental/rental_system/migrations/0005_auto_20170415_0317.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/migrations/0005_auto_20170415_0317.py -------------------------------------------------------------------------------- /rental/rental_system/migrations/0006_auto_20170415_0332.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/migrations/0006_auto_20170415_0332.py -------------------------------------------------------------------------------- /rental/rental_system/migrations/0007_auto_20170415_0336.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/migrations/0007_auto_20170415_0336.py -------------------------------------------------------------------------------- /rental/rental_system/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rental/rental_system/migrations/__pycache__/0001_initial.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/migrations/__pycache__/0001_initial.cpython-35.pyc -------------------------------------------------------------------------------- /rental/rental_system/migrations/__pycache__/0002_auto_20170415_0254.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/migrations/__pycache__/0002_auto_20170415_0254.cpython-35.pyc -------------------------------------------------------------------------------- /rental/rental_system/migrations/__pycache__/0003_auto_20170415_0258.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/migrations/__pycache__/0003_auto_20170415_0258.cpython-35.pyc -------------------------------------------------------------------------------- /rental/rental_system/migrations/__pycache__/0004_auto_20170415_0313.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/migrations/__pycache__/0004_auto_20170415_0313.cpython-35.pyc -------------------------------------------------------------------------------- /rental/rental_system/migrations/__pycache__/0005_auto_20170415_0317.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/migrations/__pycache__/0005_auto_20170415_0317.cpython-35.pyc -------------------------------------------------------------------------------- /rental/rental_system/migrations/__pycache__/0006_auto_20170415_0332.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/migrations/__pycache__/0006_auto_20170415_0332.cpython-35.pyc -------------------------------------------------------------------------------- /rental/rental_system/migrations/__pycache__/0007_auto_20170415_0336.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/migrations/__pycache__/0007_auto_20170415_0336.cpython-35.pyc -------------------------------------------------------------------------------- /rental/rental_system/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /rental/rental_system/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/models.py -------------------------------------------------------------------------------- /rental/rental_system/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/tests.py -------------------------------------------------------------------------------- /rental/rental_system/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/rental_system/views.py -------------------------------------------------------------------------------- /rental/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/templates/index.html -------------------------------------------------------------------------------- /rental/templates/newpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental/templates/newpage.html -------------------------------------------------------------------------------- /rental1.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1.zip -------------------------------------------------------------------------------- /rental1/datadump.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/datadump.json -------------------------------------------------------------------------------- /rental1/db.MySQL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rental1/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/db.sqlite3 -------------------------------------------------------------------------------- /rental1/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/manage.py -------------------------------------------------------------------------------- /rental1/rental1/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rental1/rental1/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental1/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /rental1/rental1/__pycache__/settings.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental1/__pycache__/settings.cpython-35.pyc -------------------------------------------------------------------------------- /rental1/rental1/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental1/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /rental1/rental1/__pycache__/wsgi.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental1/__pycache__/wsgi.cpython-35.pyc -------------------------------------------------------------------------------- /rental1/rental1/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental1/settings.py -------------------------------------------------------------------------------- /rental1/rental1/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental1/urls.py -------------------------------------------------------------------------------- /rental1/rental1/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental1/wsgi.py -------------------------------------------------------------------------------- /rental1/rental_system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rental1/rental_system/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental_system/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /rental1/rental_system/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental_system/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /rental1/rental_system/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental_system/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /rental1/rental_system/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental_system/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /rental1/rental_system/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental_system/admin.py -------------------------------------------------------------------------------- /rental1/rental_system/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental_system/apps.py -------------------------------------------------------------------------------- /rental1/rental_system/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental_system/migrations/0001_initial.py -------------------------------------------------------------------------------- /rental1/rental_system/migrations/0002_property_avg_rating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental_system/migrations/0002_property_avg_rating.py -------------------------------------------------------------------------------- /rental1/rental_system/migrations/0003_auto_20170416_1357.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental_system/migrations/0003_auto_20170416_1357.py -------------------------------------------------------------------------------- /rental1/rental_system/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rental1/rental_system/migrations/__pycache__/0001_initial.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental_system/migrations/__pycache__/0001_initial.cpython-35.pyc -------------------------------------------------------------------------------- /rental1/rental_system/migrations/__pycache__/0002_property_avg_rating.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental_system/migrations/__pycache__/0002_property_avg_rating.cpython-35.pyc -------------------------------------------------------------------------------- /rental1/rental_system/migrations/__pycache__/0003_auto_20170416_1357.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental_system/migrations/__pycache__/0003_auto_20170416_1357.cpython-35.pyc -------------------------------------------------------------------------------- /rental1/rental_system/migrations/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental_system/migrations/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /rental1/rental_system/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental_system/models.py -------------------------------------------------------------------------------- /rental1/rental_system/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental_system/tests.py -------------------------------------------------------------------------------- /rental1/rental_system/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/rental_system/views.py -------------------------------------------------------------------------------- /rental1/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /rental1/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /rental1/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /rental1/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/css/bootstrap.css -------------------------------------------------------------------------------- /rental1/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /rental1/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /rental1/static/css/custom.flexslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/css/custom.flexslider.css -------------------------------------------------------------------------------- /rental1/static/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/css/font-awesome.css -------------------------------------------------------------------------------- /rental1/static/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/css/font-awesome.min.css -------------------------------------------------------------------------------- /rental1/static/css/form-elements.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/css/form-elements.css -------------------------------------------------------------------------------- /rental1/static/css/framework.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/css/framework.css -------------------------------------------------------------------------------- /rental1/static/css/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rental1/static/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/css/layout.css -------------------------------------------------------------------------------- /rental1/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/css/style.css -------------------------------------------------------------------------------- /rental1/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /rental1/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /rental1/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /rental1/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /rental1/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /rental1/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /rental1/static/fonts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rental1/static/images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/01.png -------------------------------------------------------------------------------- /rental1/static/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/011.png -------------------------------------------------------------------------------- /rental1/static/images/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/02.png -------------------------------------------------------------------------------- /rental1/static/images/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/03.png -------------------------------------------------------------------------------- /rental1/static/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/1.jpg -------------------------------------------------------------------------------- /rental1/static/images/1@2x.jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/1@2x.jpg.jpg -------------------------------------------------------------------------------- /rental1/static/images/320x168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/320x168.png -------------------------------------------------------------------------------- /rental1/static/images/320x320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/320x320.png -------------------------------------------------------------------------------- /rental1/static/images/City-Skyline-Buliding-Vector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/City-Skyline-Buliding-Vector.jpg -------------------------------------------------------------------------------- /rental1/static/images/abstract.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/abstract.jpg -------------------------------------------------------------------------------- /rental1/static/images/apple-touch-icon-114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/apple-touch-icon-114-precomposed.png -------------------------------------------------------------------------------- /rental1/static/images/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /rental1/static/images/apple-touch-icon-57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/apple-touch-icon-57-precomposed.png -------------------------------------------------------------------------------- /rental1/static/images/apple-touch-icon-72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/apple-touch-icon-72-precomposed.png -------------------------------------------------------------------------------- /rental1/static/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/avatar.png -------------------------------------------------------------------------------- /rental1/static/images/buildingBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/buildingBackground.jpg -------------------------------------------------------------------------------- /rental1/static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/favicon.png -------------------------------------------------------------------------------- /rental1/static/images/house1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/house1.jpg -------------------------------------------------------------------------------- /rental1/static/images/house2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/house2.jpg -------------------------------------------------------------------------------- /rental1/static/images/house3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/house3.jpg -------------------------------------------------------------------------------- /rental1/static/images/house4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/house4.jpg -------------------------------------------------------------------------------- /rental1/static/images/housee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/housee.jpg -------------------------------------------------------------------------------- /rental1/static/images/imgl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/imgl.gif -------------------------------------------------------------------------------- /rental1/static/images/imgr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/imgr.gif -------------------------------------------------------------------------------- /rental1/static/images/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rental1/static/images/tympass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/images/tympass.jpg -------------------------------------------------------------------------------- /rental1/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/js/bootstrap.js -------------------------------------------------------------------------------- /rental1/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /rental1/static/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rental1/static/js/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/js/jquery-1.11.1.js -------------------------------------------------------------------------------- /rental1/static/js/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/js/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /rental1/static/js/jquery.backstretch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/js/jquery.backstretch.js -------------------------------------------------------------------------------- /rental1/static/js/jquery.backstretch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/js/jquery.backstretch.min.js -------------------------------------------------------------------------------- /rental1/static/js/jquery.backtotop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/js/jquery.backtotop.js -------------------------------------------------------------------------------- /rental1/static/js/jquery.flexslider-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/js/jquery.flexslider-min.js -------------------------------------------------------------------------------- /rental1/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/js/jquery.min.js -------------------------------------------------------------------------------- /rental1/static/js/jquery.mobilemenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/js/jquery.mobilemenu.js -------------------------------------------------------------------------------- /rental1/static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/js/npm.js -------------------------------------------------------------------------------- /rental1/static/js/placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/js/placeholder.js -------------------------------------------------------------------------------- /rental1/static/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/static/js/scripts.js -------------------------------------------------------------------------------- /rental1/templates/addProperty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/templates/addProperty.html -------------------------------------------------------------------------------- /rental1/templates/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/templates/dashboard.html -------------------------------------------------------------------------------- /rental1/templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/templates/home.html -------------------------------------------------------------------------------- /rental1/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/templates/login.html -------------------------------------------------------------------------------- /rental1/templates/owner_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/templates/owner_dashboard.html -------------------------------------------------------------------------------- /rental1/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/templates/register.html -------------------------------------------------------------------------------- /rental1/templates/register_visitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/templates/register_visitor.html -------------------------------------------------------------------------------- /rental1/templates/view_property.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/templates/view_property.html -------------------------------------------------------------------------------- /rental1/templates/visitor_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/rental1/templates/visitor_dashboard.html -------------------------------------------------------------------------------- /static_root_rental/admin/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/css/base.css -------------------------------------------------------------------------------- /static_root_rental/admin/css/changelists.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/css/changelists.css -------------------------------------------------------------------------------- /static_root_rental/admin/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/css/dashboard.css -------------------------------------------------------------------------------- /static_root_rental/admin/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/css/fonts.css -------------------------------------------------------------------------------- /static_root_rental/admin/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/css/forms.css -------------------------------------------------------------------------------- /static_root_rental/admin/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/css/login.css -------------------------------------------------------------------------------- /static_root_rental/admin/css/rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/css/rtl.css -------------------------------------------------------------------------------- /static_root_rental/admin/css/widgets.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/css/widgets.css -------------------------------------------------------------------------------- /static_root_rental/admin/fonts/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/fonts/LICENSE.txt -------------------------------------------------------------------------------- /static_root_rental/admin/fonts/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/fonts/README.txt -------------------------------------------------------------------------------- /static_root_rental/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /static_root_rental/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /static_root_rental/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /static_root_rental/admin/img/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/LICENSE -------------------------------------------------------------------------------- /static_root_rental/admin/img/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/README.txt -------------------------------------------------------------------------------- /static_root_rental/admin/img/calendar-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/calendar-icons.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/gis/move_vertex_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/gis/move_vertex_off.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/gis/move_vertex_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/gis/move_vertex_on.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/icon-addlink.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/icon-alert.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/icon-alert.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/icon-calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/icon-calendar.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/icon-changelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/icon-changelink.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/icon-clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/icon-clock.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/icon-deletelink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/icon-deletelink.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/icon-no.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/icon-no.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/icon-unknown-alt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/icon-unknown-alt.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/icon-unknown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/icon-unknown.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/icon-yes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/icon-yes.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/inline-delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/inline-delete.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/search.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/selector-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/selector-icons.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/sorting-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/sorting-icons.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/tooltag-add.svg -------------------------------------------------------------------------------- /static_root_rental/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/img/tooltag-arrowright.svg -------------------------------------------------------------------------------- /static_root_rental/admin/js/SelectBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/SelectBox.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/SelectFilter2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/SelectFilter2.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/actions.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/actions.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/actions.min.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/admin/DateTimeShortcuts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/admin/DateTimeShortcuts.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/admin/RelatedObjectLookups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/admin/RelatedObjectLookups.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/calendar.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/cancel.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/change_form.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/change_form.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/collapse.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/collapse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/collapse.min.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/core.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/inlines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/inlines.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/inlines.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/inlines.min.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/jquery.init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/jquery.init.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/popup_response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/popup_response.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/prepopulate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/prepopulate.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/prepopulate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/prepopulate.min.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/prepopulate_init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/prepopulate_init.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/timeparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/timeparse.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/urlify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/urlify.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/vendor/jquery/LICENSE-JQUERY.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/vendor/jquery/LICENSE-JQUERY.txt -------------------------------------------------------------------------------- /static_root_rental/admin/js/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/vendor/xregexp/LICENSE-XREGEXP.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/vendor/xregexp/LICENSE-XREGEXP.txt -------------------------------------------------------------------------------- /static_root_rental/admin/js/vendor/xregexp/xregexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/vendor/xregexp/xregexp.js -------------------------------------------------------------------------------- /static_root_rental/admin/js/vendor/xregexp/xregexp.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/admin/js/vendor/xregexp/xregexp.min.js -------------------------------------------------------------------------------- /static_root_rental/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static_root_rental/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static_root_rental/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static_root_rental/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/css/bootstrap.css -------------------------------------------------------------------------------- /static_root_rental/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/css/bootstrap.css.map -------------------------------------------------------------------------------- /static_root_rental/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/css/bootstrap.min.css -------------------------------------------------------------------------------- /static_root_rental/css/custom.flexslider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/css/custom.flexslider.css -------------------------------------------------------------------------------- /static_root_rental/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/css/font-awesome.css -------------------------------------------------------------------------------- /static_root_rental/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/css/font-awesome.min.css -------------------------------------------------------------------------------- /static_root_rental/css/form-elements.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/css/form-elements.css -------------------------------------------------------------------------------- /static_root_rental/css/framework.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/css/framework.css -------------------------------------------------------------------------------- /static_root_rental/css/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static_root_rental/css/layout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/css/layout.css -------------------------------------------------------------------------------- /static_root_rental/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/css/style.css -------------------------------------------------------------------------------- /static_root_rental/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static_root_rental/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static_root_rental/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static_root_rental/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static_root_rental/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static_root_rental/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /static_root_rental/fonts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static_root_rental/images/01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/01.png -------------------------------------------------------------------------------- /static_root_rental/images/011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/011.png -------------------------------------------------------------------------------- /static_root_rental/images/02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/02.png -------------------------------------------------------------------------------- /static_root_rental/images/03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/03.png -------------------------------------------------------------------------------- /static_root_rental/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/1.jpg -------------------------------------------------------------------------------- /static_root_rental/images/1@2x.jpg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/1@2x.jpg.jpg -------------------------------------------------------------------------------- /static_root_rental/images/320x168.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/320x168.png -------------------------------------------------------------------------------- /static_root_rental/images/320x320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/320x320.png -------------------------------------------------------------------------------- /static_root_rental/images/City-Skyline-Buliding-Vector.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/City-Skyline-Buliding-Vector.jpg -------------------------------------------------------------------------------- /static_root_rental/images/apple-touch-icon-114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/apple-touch-icon-114-precomposed.png -------------------------------------------------------------------------------- /static_root_rental/images/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /static_root_rental/images/apple-touch-icon-57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/apple-touch-icon-57-precomposed.png -------------------------------------------------------------------------------- /static_root_rental/images/apple-touch-icon-72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/apple-touch-icon-72-precomposed.png -------------------------------------------------------------------------------- /static_root_rental/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/avatar.png -------------------------------------------------------------------------------- /static_root_rental/images/buildingBackground.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/buildingBackground.jpg -------------------------------------------------------------------------------- /static_root_rental/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/favicon.png -------------------------------------------------------------------------------- /static_root_rental/images/house1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/house1.jpg -------------------------------------------------------------------------------- /static_root_rental/images/house2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/house2.jpg -------------------------------------------------------------------------------- /static_root_rental/images/house3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/house3.jpg -------------------------------------------------------------------------------- /static_root_rental/images/house4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/house4.jpg -------------------------------------------------------------------------------- /static_root_rental/images/imgl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/imgl.gif -------------------------------------------------------------------------------- /static_root_rental/images/imgr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/imgr.gif -------------------------------------------------------------------------------- /static_root_rental/images/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static_root_rental/images/tympass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/images/tympass.jpg -------------------------------------------------------------------------------- /static_root_rental/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/js/bootstrap.js -------------------------------------------------------------------------------- /static_root_rental/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/js/bootstrap.min.js -------------------------------------------------------------------------------- /static_root_rental/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static_root_rental/js/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/js/jquery-1.11.1.js -------------------------------------------------------------------------------- /static_root_rental/js/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/js/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /static_root_rental/js/jquery.backstretch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/js/jquery.backstretch.js -------------------------------------------------------------------------------- /static_root_rental/js/jquery.backstretch.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/js/jquery.backstretch.min.js -------------------------------------------------------------------------------- /static_root_rental/js/jquery.backtotop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/js/jquery.backtotop.js -------------------------------------------------------------------------------- /static_root_rental/js/jquery.flexslider-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/js/jquery.flexslider-min.js -------------------------------------------------------------------------------- /static_root_rental/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/js/jquery.min.js -------------------------------------------------------------------------------- /static_root_rental/js/jquery.mobilemenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/js/jquery.mobilemenu.js -------------------------------------------------------------------------------- /static_root_rental/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/js/npm.js -------------------------------------------------------------------------------- /static_root_rental/js/placeholder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/js/placeholder.js -------------------------------------------------------------------------------- /static_root_rental/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akshseh/Rental_Management_System/HEAD/static_root_rental/js/scripts.js --------------------------------------------------------------------------------