netclock/worldclock/views.py
Armin Friedl 43178784d9
Some checks failed
continuous-integration/drone/push Build is failing
Reformatting, new gitignore
2020-10-26 11:07:42 +01:00

7 lines
197 B
Python

from flask import render_template, request, flash, redirect, url_for, session
from . import app
@app.route('', methods=['GET'])
def create():
return render_template("worldclock/create.html")