├── emp ├── __init__.py ├── migrations │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ ├── 0001_initial.cpython-39.pyc │ │ └── 0002_testimonial.cpython-39.pyc │ ├── 0002_testimonial.py │ └── 0001_initial.py ├── tests.py ├── __pycache__ │ ├── admin.cpython-39.pyc │ ├── apps.cpython-39.pyc │ ├── form.cpython-39.pyc │ ├── forms.cpython-39.pyc │ ├── urls.cpython-39.pyc │ ├── views.cpython-39.pyc │ ├── models.cpython-39.pyc │ └── __init__.cpython-39.pyc ├── apps.py ├── admin.py ├── urls.py ├── forms.py ├── models.py └── views.py ├── myapp ├── __init__.py ├── __pycache__ │ ├── urls.cpython-39.pyc │ ├── views.cpython-39.pyc │ ├── wsgi.cpython-39.pyc │ ├── __init__.cpython-39.pyc │ └── settings.cpython-39.pyc ├── asgi.py ├── wsgi.py ├── urls.py ├── views.py └── settings.py ├── website ├── urls.py ├── __init__.py ├── migrations │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── 0001_initial.cpython-39.pyc │ └── 0001_initial.py ├── tests.py ├── views.py ├── admin.py ├── __pycache__ │ ├── admin.cpython-39.pyc │ ├── apps.cpython-39.pyc │ ├── models.cpython-39.pyc │ └── __init__.cpython-39.pyc ├── apps.py └── models.py ├── db.sqlite3 ├── django_tutorials.pptx ├── testimonials ├── vlcsnap-2021-11-28-00h43m59s158.png └── vlcsnap-2021-12-18-00h58m19s860.png ├── media └── testimonials │ ├── vlcsnap-2021-12-18-00h58m19s860.png │ ├── vlcsnap-2022-05-02-13h49m01s958.png │ └── vlcsnap-2022-05-02-13h49m08s402.png ├── templates ├── navbar.html ├── about.html ├── services.html ├── emp │ ├── feedback.html │ ├── navbar.html │ ├── testimonials.html │ ├── home.html │ ├── add_emp.html │ └── update_emp.html └── home.html └── manage.py /emp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /myapp/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/urls.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emp/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /website/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /website/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /django_tutorials.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/django_tutorials.pptx -------------------------------------------------------------------------------- /emp/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/emp/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /emp/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/emp/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /emp/__pycache__/form.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/emp/__pycache__/form.cpython-39.pyc -------------------------------------------------------------------------------- /emp/__pycache__/forms.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/emp/__pycache__/forms.cpython-39.pyc -------------------------------------------------------------------------------- /emp/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/emp/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /emp/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/emp/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /emp/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/emp/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /myapp/__pycache__/urls.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/myapp/__pycache__/urls.cpython-39.pyc -------------------------------------------------------------------------------- /myapp/__pycache__/views.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/myapp/__pycache__/views.cpython-39.pyc -------------------------------------------------------------------------------- /myapp/__pycache__/wsgi.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/myapp/__pycache__/wsgi.cpython-39.pyc -------------------------------------------------------------------------------- /website/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Student 3 | # Register your models here. 4 | 5 | 6 | admin.site.register(Student) 7 | -------------------------------------------------------------------------------- /emp/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/emp/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /myapp/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/myapp/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /myapp/__pycache__/settings.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/myapp/__pycache__/settings.cpython-39.pyc -------------------------------------------------------------------------------- /website/__pycache__/admin.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/website/__pycache__/admin.cpython-39.pyc -------------------------------------------------------------------------------- /website/__pycache__/apps.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/website/__pycache__/apps.cpython-39.pyc -------------------------------------------------------------------------------- /website/__pycache__/models.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/website/__pycache__/models.cpython-39.pyc -------------------------------------------------------------------------------- /emp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class EmpConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'emp' 7 | -------------------------------------------------------------------------------- /website/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/website/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /testimonials/vlcsnap-2021-11-28-00h43m59s158.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/testimonials/vlcsnap-2021-11-28-00h43m59s158.png -------------------------------------------------------------------------------- /testimonials/vlcsnap-2021-12-18-00h58m19s860.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/testimonials/vlcsnap-2021-12-18-00h58m19s860.png -------------------------------------------------------------------------------- /emp/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/emp/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /website/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class WebsiteConfig(AppConfig): 5 | default_auto_field = 'django.db.models.BigAutoField' 6 | name = 'website' 7 | -------------------------------------------------------------------------------- /emp/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/emp/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /media/testimonials/vlcsnap-2021-12-18-00h58m19s860.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/media/testimonials/vlcsnap-2021-12-18-00h58m19s860.png -------------------------------------------------------------------------------- /media/testimonials/vlcsnap-2022-05-02-13h49m01s958.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/media/testimonials/vlcsnap-2022-05-02-13h49m01s958.png -------------------------------------------------------------------------------- /media/testimonials/vlcsnap-2022-05-02-13h49m08s402.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/media/testimonials/vlcsnap-2022-05-02-13h49m08s402.png -------------------------------------------------------------------------------- /website/migrations/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/website/migrations/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /emp/migrations/__pycache__/0002_testimonial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/emp/migrations/__pycache__/0002_testimonial.cpython-39.pyc -------------------------------------------------------------------------------- /website/migrations/__pycache__/0001_initial.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LearnCodeWithDurgesh/Django-Framework-with-Project/HEAD/website/migrations/__pycache__/0001_initial.cpython-39.pyc -------------------------------------------------------------------------------- /templates/navbar.html: -------------------------------------------------------------------------------- 1 |
15 | Lorem ipsum dolor sit, amet consectetur adipisicing elit. Harum, ab 16 | mollitia vero tempora ipsa perferendis praesentium repellendus. A sint 17 | quas officia quo esse eos exercitationem voluptates unde illo quisquam, 18 | id, illum voluptatem cumque reiciendis ad assumenda, aspernatur 19 | molestiae. Vitae quidem suscipit, culpa illum ullam ipsa cum quis 20 | voluptatum dolorem possimus? 21 |
22 | 23 |15 | Lorem ipsum dolor sit, amet consectetur adipisicing elit. Harum, ab 16 | mollitia vero tempora ipsa perferendis praesentium repellendus. A sint 17 | quas officia quo esse eos exercitationem voluptates unde illo quisquam, 18 | id, illum voluptatem cumque reiciendis ad assumenda, aspernatur 19 | molestiae. Vitae quidem suscipit, culpa illum ullam ipsa cum quis 20 | voluptatum dolorem possimus? 21 |
22 | 23 |25 | Lorem ipsum dolor sit, amet consectetur adipisicing elit. Harum, ab 26 | mollitia vero tempora ipsa perferendis praesentium repellendus. A sint 27 | quas officia quo esse eos exercitationem voluptates unde illo quisquam, 28 | id, illum voluptatem cumque reiciendis ad assumenda, aspernatur 29 | molestiae. Vitae quidem suscipit, culpa illum ullam ipsa cum quis 30 | voluptatum dolorem possimus? 31 |
32 | 33 | 34 | 35 | 36 | {% if isActive %} 37 || #SNO. | 27 |NAME | 28 |Testimonials | 29 |Rating | 30 | 31 |
|---|---|---|---|
| 38 | {{forloop.counter}} 39 | | 40 |
41 | |
44 | 45 | {{t.testimonial}} 46 | | 47 |48 | {{t.rating}} 49 | | 50 | 51 |
| #SNO. | 28 |NAME | 29 |EMP ID | 30 |PHONE | 31 |WORKING | 32 |DEPARTMENT | 33 |ADDRESS | 34 |ACTION | 35 |
|---|---|---|---|---|---|---|---|
| {{forloop.counter}} | 41 |{{e.name}} | 42 |{{e.emp_id}} | 43 |{{e.phone}} | 44 |{{e.working}} | 45 |{{e.department}} | 46 |{{e.address}} | 47 |48 | Delete 49 | Update 50 | | 51 |