Prechádzať zdrojové kódy

add form_url into home and room_planner main route

weichen 4 rokov pred
rodič
commit
07bd1dc9da

+ 1 - 0
backstage/home/routes.py

@@ -11,6 +11,7 @@ def home():
     if response.status_code == 200:
         return render_template('home.html',
                                title='首頁',
+                               form_url='home.update',
                                page='home',
                                contents=response.json())
 

+ 1 - 0
backstage/room_planner/routes.py

@@ -10,6 +10,7 @@ def main():
     response = requests.get('http://127.0.0.1:5000/api/manages/data?page=room_planner')
     return render_template('room_planner.html',
                            title='規劃師服務',
+                           form_url='room_planner.update',
                            page='room_planner',
                            contents=response.json())