Ordering food was never so easy
101 |Just 4 steps to follow
103 |Choose Your Restaurant
110 |Order Your Cuisine
116 |Pay online
121 | 122 |Enjoy your food
127 | 128 | 129 |├── webapp ├── __init__.py ├── migrations │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── 0001_initial.cpython-36.pyc │ │ ├── 0002_auto_20181019_0704.cpython-36.pyc │ │ ├── 0002_auto_20181020_1643.cpython-36.pyc │ │ ├── 0002_auto_20181021_1256.cpython-36.pyc │ │ ├── 0003_auto_20181020_1721.cpython-36.pyc │ │ ├── 0003_auto_20181021_1310.cpython-36.pyc │ │ ├── 0004_auto_20181020_1801.cpython-36.pyc │ │ ├── 0004_auto_20181021_1320.cpython-36.pyc │ │ └── 0005_auto_20181021_1341.cpython-36.pyc │ └── 0001_initial.py ├── tests.py ├── apps.py ├── static │ └── webapp │ │ ├── images │ │ ├── 12.png │ │ ├── 5p.jpg │ │ ├── 6p.jpg │ │ ├── 8p.jpg │ │ ├── p1.jpg │ │ ├── p2.jpg │ │ ├── p3.jpg │ │ ├── bag.png │ │ ├── cross.png │ │ ├── icon1.jpg │ │ ├── icon2.jpg │ │ ├── icon3.jpg │ │ ├── line.png │ │ ├── logo.jpg │ │ ├── logo.png │ │ ├── logo1.png │ │ ├── lunch.png │ │ ├── order.jpg │ │ ├── star1.png │ │ ├── star2.png │ │ ├── tick1.png │ │ ├── banner.jpg │ │ ├── close_1.png │ │ ├── loader.gif │ │ ├── slide_1.jpg │ │ ├── slide_2.jpg │ │ ├── slide_3.jpg │ │ ├── to-top2.png │ │ ├── type-1.png │ │ ├── type-2.png │ │ ├── type-3.png │ │ ├── type-4.png │ │ ├── wood_1.png │ │ ├── 0302-steak.png │ │ ├── 0401-vegan.png │ │ ├── 0402-chef.png │ │ ├── cuisine1.jpg │ │ ├── cuisine2.jpg │ │ ├── cuisine3.jpg │ │ ├── cuisine4.jpg │ │ ├── cuisine5.jpg │ │ ├── cuisine6.jpg │ │ ├── cuisine7.jpg │ │ ├── cuisine8.jpg │ │ ├── img-sprite.png │ │ ├── res_img_1.jpg │ │ ├── res_img_2.jpg │ │ ├── res_img_3.jpg │ │ ├── res_img_4.jpg │ │ ├── res_img_5.jpg │ │ ├── res_img_6.jpg │ │ ├── res_img_7.jpg │ │ ├── res_img_8.jpg │ │ ├── dotted-line.png │ │ ├── restaurent-1.jpg │ │ ├── restaurent-2.jpg │ │ ├── restaurent-3.jpg │ │ ├── restaurent-4.jpg │ │ ├── restaurent-5.jpg │ │ ├── restaurent-6.jpg │ │ ├── service-banner.jpg │ │ ├── 0203-coffee-love.png │ │ ├── 0301-pina-colada.png │ │ ├── dotted-line-right.png │ │ ├── order-section-bg.png │ │ ├── restaurent-logo1.jpg │ │ ├── restaurent-logo2.jpg │ │ ├── restaurent-logo3.jpg │ │ ├── restaurent-logo4.jpg │ │ ├── restaurent-logo5.jpg │ │ ├── restaurent-logo6.jpg │ │ ├── 0103-served-plate_64.png │ │ ├── 0301-pina-colada_64.png │ │ ├── 0103-served-plate_128.png │ │ └── dotted-line-right-wide.png │ │ └── js │ │ ├── move-top.js │ │ ├── classie.js │ │ ├── wow.min.js │ │ ├── easing.js │ │ ├── uisearch.js │ │ ├── jquery.flexisel.js │ │ ├── jquery.easydropdown.js │ │ ├── simpleCart.min.js │ │ └── jquery.carouFredSel-6.1.0-packed.js ├── __pycache__ │ ├── admin.cpython-36.pyc │ ├── apps.cpython-36.pyc │ ├── forms.cpython-36.pyc │ ├── urls.cpython-36.pyc │ ├── views.cpython-36.pyc │ ├── __init__.cpython-36.pyc │ └── models.cpython-36.pyc ├── admin.py ├── templates │ └── webapp │ │ ├── form_template.html │ │ ├── orderplaced.html │ │ ├── profile_form.html │ │ ├── rest_profile_form.html │ │ ├── order.html │ │ ├── signup.html │ │ ├── restsignup.html │ │ ├── restaurents.html │ │ ├── login.html │ │ ├── restlogin.html │ │ ├── menu_modify.html │ │ ├── menu.html │ │ ├── profile.html │ │ ├── rest_profile.html │ │ ├── base.html │ │ ├── base2.html │ │ ├── order-list.html │ │ └── index.html ├── urls.py ├── forms.py ├── models.py └── views.py ├── foodapp ├── __init__.py ├── __pycache__ │ ├── urls.cpython-36.pyc │ ├── wsgi.cpython-36.pyc │ ├── __init__.cpython-36.pyc │ └── settings.cpython-36.pyc ├── wsgi.py ├── urls.py └── settings.py ├── requirements.txt ├── db.sqlite3 ├── manage.py └── README.md /webapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /foodapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webapp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django==2.0.8 2 | 3 | -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /webapp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /webapp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class WebappConfig(AppConfig): 5 | name = 'webapp' 6 | -------------------------------------------------------------------------------- /webapp/static/webapp/images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/12.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/5p.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/5p.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/6p.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/6p.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/8p.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/8p.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/p1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/p1.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/p2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/p2.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/p3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/p3.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/bag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/bag.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/cross.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/icon1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/icon1.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/icon2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/icon2.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/icon3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/icon3.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/line.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/logo.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/logo.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/logo1.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/lunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/lunch.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/order.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/order.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/star1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/star1.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/star2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/star2.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/tick1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/tick1.png -------------------------------------------------------------------------------- /foodapp/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/foodapp/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /foodapp/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/foodapp/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/__pycache__/apps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/__pycache__/apps.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/static/webapp/images/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/banner.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/close_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/close_1.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/loader.gif -------------------------------------------------------------------------------- /webapp/static/webapp/images/slide_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/slide_1.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/slide_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/slide_2.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/slide_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/slide_3.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/to-top2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/to-top2.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/type-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/type-1.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/type-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/type-2.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/type-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/type-3.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/type-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/type-4.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/wood_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/wood_1.png -------------------------------------------------------------------------------- /webapp/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/static/webapp/images/0302-steak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/0302-steak.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/0401-vegan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/0401-vegan.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/0402-chef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/0402-chef.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/cuisine1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/cuisine1.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/cuisine2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/cuisine2.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/cuisine3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/cuisine3.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/cuisine4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/cuisine4.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/cuisine5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/cuisine5.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/cuisine6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/cuisine6.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/cuisine7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/cuisine7.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/cuisine8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/cuisine8.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/img-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/img-sprite.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/res_img_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/res_img_1.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/res_img_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/res_img_2.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/res_img_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/res_img_3.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/res_img_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/res_img_4.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/res_img_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/res_img_5.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/res_img_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/res_img_6.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/res_img_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/res_img_7.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/res_img_8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/res_img_8.jpg -------------------------------------------------------------------------------- /foodapp/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/foodapp/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /foodapp/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/foodapp/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/static/webapp/images/dotted-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/dotted-line.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/restaurent-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/restaurent-1.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/restaurent-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/restaurent-2.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/restaurent-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/restaurent-3.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/restaurent-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/restaurent-4.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/restaurent-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/restaurent-5.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/restaurent-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/restaurent-6.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/service-banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/service-banner.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/0203-coffee-love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/0203-coffee-love.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/0301-pina-colada.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/0301-pina-colada.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/dotted-line-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/dotted-line-right.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/order-section-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/order-section-bg.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/restaurent-logo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/restaurent-logo1.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/restaurent-logo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/restaurent-logo2.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/restaurent-logo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/restaurent-logo3.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/restaurent-logo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/restaurent-logo4.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/restaurent-logo5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/restaurent-logo5.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/restaurent-logo6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/restaurent-logo6.jpg -------------------------------------------------------------------------------- /webapp/static/webapp/images/0103-served-plate_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/0103-served-plate_64.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/0301-pina-colada_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/0301-pina-colada_64.png -------------------------------------------------------------------------------- /webapp/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/static/webapp/images/0103-served-plate_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/0103-served-plate_128.png -------------------------------------------------------------------------------- /webapp/static/webapp/images/dotted-line-right-wide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/static/webapp/images/dotted-line-right-wide.png -------------------------------------------------------------------------------- /webapp/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/migrations/__pycache__/0002_auto_20181019_0704.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/migrations/__pycache__/0002_auto_20181019_0704.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/migrations/__pycache__/0002_auto_20181020_1643.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/migrations/__pycache__/0002_auto_20181020_1643.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/migrations/__pycache__/0002_auto_20181021_1256.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/migrations/__pycache__/0002_auto_20181021_1256.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/migrations/__pycache__/0003_auto_20181020_1721.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/migrations/__pycache__/0003_auto_20181020_1721.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/migrations/__pycache__/0003_auto_20181021_1310.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/migrations/__pycache__/0003_auto_20181021_1310.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/migrations/__pycache__/0004_auto_20181020_1801.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/migrations/__pycache__/0004_auto_20181020_1801.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/migrations/__pycache__/0004_auto_20181021_1320.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/migrations/__pycache__/0004_auto_20181021_1320.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/migrations/__pycache__/0005_auto_20181021_1341.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asif536/Food-Ordering-System/HEAD/webapp/migrations/__pycache__/0005_auto_20181021_1341.cpython-36.pyc -------------------------------------------------------------------------------- /webapp/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Customer,Restaurant,Item,Menu,Order,orderItem,User 3 | 4 | admin.site.register(User) 5 | admin.site.register(Customer) 6 | admin.site.register(Restaurant) 7 | admin.site.register(Item) 8 | admin.site.register(Menu) 9 | admin.site.register(Order) 10 | admin.site.register(orderItem) -------------------------------------------------------------------------------- /webapp/templates/webapp/form_template.html: -------------------------------------------------------------------------------- 1 | {% for field in form %} 2 |
| Item Name | 12 |Quantity | 13 |Price | 14 | 15 | {% for x in items %} 16 |
|---|---|---|
| {{x.0}} | {{x.1}} | ₹ {{x.2}} |
{{ error_message }}
15 | {% endif %} 16 |{{ error_message }}
15 | {% endif %} 16 |{{ error_message }}
18 | {% endif %} 19 |{{ error_message }}
18 | {% endif %} 19 |17 |
| Item | 21 |Price | 22 |Quantity | 23 |24 | 25 | {% for x in menu %} 26 | |
|---|
45 |
| Item | 49 |Price | 50 |Quantity | 51 |52 | 53 | |
|---|
77 |
| Item | 81 |Price | 82 |Quantity | 83 |84 | 85 | {% for x in menu %} 86 | |
|---|---|---|---|
| {{x.0}} | 88 |{{x.1}} | 89 |{{x.2}} | 90 |91 | 96 | | 97 |
8 | Info : {{rinfo|safe}}
9 |
10 | Location: {{rlocation}}
11 |
12 | Min Order: ₹{{rmin}}
13 |
14 |
| Item Name | 27 |Category | 28 |Price | 29 |Add | 30 | 31 | {% for x in items %} 32 |||
|---|---|---|---|---|---|
| {{x.0}} | 34 |{{x.1}} | 35 |₹ {{x.2}} | 36 | {% if x.4 == "Open" %} 37 | {% if x.5 > 0 %} 38 |
39 |
40 |
41 |
59 |
42 |
48 |
49 | 0
50 |
51 |
57 |
58 | |
60 | {% else %}
61 | 62 | NA 63 | | 64 | {% endif %} 65 | {% else %} 66 |67 | Closed 68 | | 69 | {% endif %} 70 |
| User Name: | 24 |{{user.username}} | 25 |
| First Name: | 28 |{{user.customer.f_name}} | 29 |
| Last Name: | 32 |{{user.customer.l_name}} | 33 |
| City: | 36 |{{user.customer.city}} | 37 |Address: | 40 |{{user.customer.address}} | 41 | 42 |
| Email: | 44 |{{user.email}} | 45 |
| Phone Number: | 48 |{{user.customer.phone}} 49 | | 50 | 51 |
| Restaurant UserName: | 28 |{{user.username}} | 29 |
| Name: | 32 |{{user.restaurant.rname}} | 33 |
| info: | 37 |{{user.restaurant.info}} | 38 |
| Location: | 41 |{{user.restaurant.location}} | 42 |
| Status: | 45 |{{user.restaurant.status}} | 46 |
| Approved: | 49 |{{user.restaurant.approved}} | 50 |
| Email: | 53 |{{user.email}} | 54 |
| 19 | Name 20 | | 21 |22 | Quantity 23 | | 24 |25 | Price 26 | | 27 | 28 | {% for x in order.2 %} 29 |
|---|---|---|
| {{x.0}} | {{x.1}} | ₹{{x.2}} |
Choose Your Restaurant
110 |Order Your Cuisine
116 |Pay online
121 | 122 |Enjoy your food
127 | 128 | 129 |
148 |
149 |
150 |
157 |
158 |
159 |
166 |
167 |
168 |
175 |
176 |
177 |
184 |
185 |
186 |
204 |
205 |
214 |
215 |
225 |
226 |
235 |
236 |
245 |
246 |
255 |
256 |
265 |
266 |
274 |