├── .gitattributes ├── .gitignore ├── README.md ├── accounts ├── admin.py ├── apps.py ├── forms.py ├── models.py ├── tests.py └── views.py ├── car_rental_app ├── settings.py ├── urls.py └── wsgi.py ├── manage.py ├── static ├── css │ ├── bootstrap.min.css │ └── style.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── cover.jpg │ ├── cover2.jpg │ └── honda-amaze.jpg └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── npm.js ├── system ├── admin.py ├── apps.py ├── forms.py ├── models.py ├── tests.py ├── urls.py └── views.py └── templates ├── admin_index.html ├── admin_msg.html ├── available_movie.html ├── base.html ├── car_create.html ├── car_detail.html ├── car_list.html ├── contact.html ├── form.html ├── home.html ├── new_car.html ├── order_create.html ├── order_detail.html ├── order_list.html └── popular_car.html /.gitattributes: -------------------------------------------------------------------------------- 1 | *.html linguist-vendored 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store 3 | __pycache__ 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/README.md -------------------------------------------------------------------------------- /accounts/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/accounts/admin.py -------------------------------------------------------------------------------- /accounts/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/accounts/apps.py -------------------------------------------------------------------------------- /accounts/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/accounts/forms.py -------------------------------------------------------------------------------- /accounts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/accounts/models.py -------------------------------------------------------------------------------- /accounts/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/accounts/tests.py -------------------------------------------------------------------------------- /accounts/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/accounts/views.py -------------------------------------------------------------------------------- /car_rental_app/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/car_rental_app/settings.py -------------------------------------------------------------------------------- /car_rental_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/car_rental_app/urls.py -------------------------------------------------------------------------------- /car_rental_app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/car_rental_app/wsgi.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/manage.py -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/static/css/style.css -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/images/cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/static/images/cover.jpg -------------------------------------------------------------------------------- /static/images/cover2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/static/images/cover2.jpg -------------------------------------------------------------------------------- /static/images/honda-amaze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/static/images/honda-amaze.jpg -------------------------------------------------------------------------------- /static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/static/js/bootstrap.js -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/static/js/npm.js -------------------------------------------------------------------------------- /system/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/system/admin.py -------------------------------------------------------------------------------- /system/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/system/apps.py -------------------------------------------------------------------------------- /system/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/system/forms.py -------------------------------------------------------------------------------- /system/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/system/models.py -------------------------------------------------------------------------------- /system/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/system/tests.py -------------------------------------------------------------------------------- /system/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/system/urls.py -------------------------------------------------------------------------------- /system/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/system/views.py -------------------------------------------------------------------------------- /templates/admin_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/templates/admin_index.html -------------------------------------------------------------------------------- /templates/admin_msg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/templates/admin_msg.html -------------------------------------------------------------------------------- /templates/available_movie.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/templates/available_movie.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/car_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/templates/car_create.html -------------------------------------------------------------------------------- /templates/car_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/templates/car_detail.html -------------------------------------------------------------------------------- /templates/car_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/templates/car_list.html -------------------------------------------------------------------------------- /templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/templates/contact.html -------------------------------------------------------------------------------- /templates/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/templates/form.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/new_car.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/templates/new_car.html -------------------------------------------------------------------------------- /templates/order_create.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/templates/order_create.html -------------------------------------------------------------------------------- /templates/order_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/templates/order_detail.html -------------------------------------------------------------------------------- /templates/order_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s1s1ty/CarRentalSystem/HEAD/templates/order_list.html -------------------------------------------------------------------------------- /templates/popular_car.html: -------------------------------------------------------------------------------- 1 | This is popular page --------------------------------------------------------------------------------