renamed dock to Dock

This commit is contained in:
Navan Chauhan 2020-07-13 18:56:13 +05:30
parent a761074d03
commit a51ae34ef5
2 changed files with 2 additions and 1 deletions

View File

@ -13,6 +13,7 @@ DB_NAME = 'curie'
SECRET_KEY = 'Sup3r$3cretkey' SECRET_KEY = 'Sup3r$3cretkey'
app = Flask(__name__) app = Flask(__name__)
#app = Flask(__name__, static_url_path='static')
app.config.from_object(__name__) app.config.from_object(__name__)
from app import views from app import views

View File

@ -111,7 +111,7 @@ def wtform():
return render_template('wtform.html', form=myform) return render_template('wtform.html', form=myform)
@app.route('/dock', methods=['GET', 'POST']) @app.route('/Dock', methods=['GET', 'POST'])
def dock_upload(): def dock_upload():
form = curieForm() form = curieForm()