from django.urls import path, include

from .views import *

app_name = 'em21'
from django.urls import path, include
urlpatterns = [
    path("", home, name="index"),
    path("abstract/", abstract, name="abstract"),
    path("announcement/", announcement, name="announcement"),
    path("accomodation/", accomodation, name="accomodation"),
    path("brochure/", brochure, name="brochure"),
    path("chapter_videos/", chapter_videos, name="chapter_videos"),
    path("col_initiative/", col_initiative, name="col_initiative"),
    path("col_odl_guide/", col_odl_guide, name="col_odl_guide"),
    path("communication/", communication, name="communication"),
    path("contact/", contact, name="contact"),
    path("course_ref_books/", course_ref_books, name="course_ref_books"),
    path("coursedetails/", coursedetails, name="coursedetails"),
    path("coursefee/", coursefee, name="coursefee"),
    path("courseschedule/", courseschedule, name="courseschedule"),
    path("de_env/", de_env, name="de_env"),
    path("dist_education/", dist_education, name="dist_education"),
    path("distcourses/", distcourses, name="distcourses"),
    path("eng_books/", eng_books, name="eng_books"),
    path("faculty/", faculty, name="faculty"),
    path("glimpse/", glimpse, name="glimpse"),
    path("instructions/", instructions, name="instructions"),
    path("org_committee/", org_committee, name="org_committee"),
    path("participants_list/", participants_list, name="participants_list"),
    path("prg_schedule/", prg_schedule, name="prg_schedule"),
    path("proceedings/", proceedings, name="proceedings"),
    path("project_videos/", project_videos, name="project_videos"),
    path("qualification/", qualification, name="qualification"),
    path("registform/", registform, name="registform"),
    path("route/", route, name="route"),
    path("sponsors/", sponsors, name="sponsors"),
    path("syllabus/", syllabus, name="syllabus"),
    path("details/", details, name="details"),
]
