forked from Ethereal-CodeHers/The-Book-Buddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroutes.py
38 lines (27 loc) · 869 Bytes
/
routes.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from app import app
from flask import Flask, render_template, url_for
@app.route('/')
def index():
return render_template('index.html')
@app.route('/cbsetextbook')
def cbsetextbook():
return render_template('cbsetextbook.html')
@app.route('/stateboardtextbook')
def stateboardtextbook():
return render_template('stateboardtextbook.html')
# CBSE Standards
from cbsestandards import *
# StateBoard Standards
from stateboardstandards import *
# CBSE Subjects
from class8cbsesubs import *
from class9cbsesubs import *
from class10cbsesubs import *
from class11cbsesubs import *
from class12cbsesubs import *
# Stateboard Subjects
from class8stateboardsubs import *
from class9stateboardsubs import *
from class10stateboardsubs import *
from class11stateboardsubs import *
from class12stateboardsubs import *