Files
notifications-admin/app/main/views/index.py

60 lines
1.5 KiB
Python
Raw Normal View History

import markdown
import os
2016-05-04 13:01:55 +01:00
from flask import (render_template, url_for, redirect, Markup)
2015-11-20 16:33:11 +00:00
from app.main import main
from flask_login import login_required
2015-11-20 16:22:44 +00:00
from flask.ext.login import current_user
from mdx_gfm import GithubFlavoredMarkdownExtension
2015-11-20 16:22:44 +00:00
@main.route('/')
2015-11-20 16:22:44 +00:00
def index():
2016-05-04 13:01:55 +01:00
if current_user and current_user.is_authenticated:
return redirect(url_for('main.choose_service'))
return render_template('views/signedout.html')
@main.route("/verify-mobile")
@login_required
def verify_mobile():
return render_template('views/verify-mobile.html')
@main.route('/cookies')
def cookies():
return render_template('views/cookies.html')
@main.route('/trial-mode')
def trial_mode():
return render_template('views/trial-mode.html')
@main.route('/pricing')
def pricing():
return render_template('views/pricing.html')
2016-03-21 14:47:45 +00:00
@main.route('/terms')
def terms():
return render_template('views/terms-of-use.html')
2016-05-09 16:18:13 +01:00
@main.route('/delivery-and-failure')
def delivery_and_failure():
return render_template('views/delivery-and-failure.html')
@main.route('/documentation')
def documentation():
curr_dir = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(curr_dir, '../../../docs/index.md'), encoding='utf-8') as source:
return render_template(
'views/documentation.html',
body=Markup(markdown.markdown(
source.read(),
extensions=[GithubFlavoredMarkdownExtension()]
))
)