From 11a2e1c778cf4b2ea958b6bdd7868c8604d45df2 Mon Sep 17 00:00:00 2001 From: Navan Chauhan Date: Mon, 7 Jun 2021 13:59:24 +0530 Subject: added docstrings --- app/views/main.py | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'app/views/main.py') diff --git a/app/views/main.py b/app/views/main.py index 85df723..d4d94e9 100644 --- a/app/views/main.py +++ b/app/views/main.py @@ -1,20 +1,32 @@ +# -*- coding: utf-8 -*- +""" +This is the main views module. + +You should import all other views into this file rather than individually importing in __init__.py +""" + from app import app from app.forms.app_forms import MyForm from flask import render_template, flash from app.views import auth, error_pages, admin from app.misc_func import flash_errors -theme = "original" - - @app.route("/") @app.route("/index") def index(): + """ + The view for the landing page. + """ return render_template("index.html") @app.route("/ContactUs", methods=["GET", "POST"]) def contact_us(): + """ + A simple contact us form with basic validation. + + This dummy form has not been linked to any database. + """ form = MyForm() if form.validate_on_submit(): return "Wuhu" -- cgit v1.2.3