Przeglądaj źródła

add backstage routes for home and editor

weichen 4 lat temu
rodzic
commit
31220274a5
1 zmienionych plików z 13 dodań i 0 usunięć
  1. 13 0
      backstage/routes.py

+ 13 - 0
backstage/routes.py

@@ -0,0 +1,13 @@
+from flask import render_template, url_for
+from backstage import app
+
+
+@app.route('/backstage')
+@app.route('/backstage/home')
+def home():
+    return render_template('home.html')
+
+
+@app.route('/backstage/editor')
+def editor():
+    return render_template('editor.html', title='Type Editor')