]> ToastFreeware Gitweb - philipp/winterrodeln/wradmin.git/blobdiff - wradmin/controllers/rodelbahn.py
Json is now loaded with Ajax.
[philipp/winterrodeln/wradmin.git] / wradmin / controllers / rodelbahn.py
index 2089cdd2f925635402f42bc7cfebbba4bc8a1c99..a4c2a6404a0e99ac98b3276921ee42e2ced594cb 100644 (file)
@@ -1,13 +1,15 @@
-from flask import request, abort, redirect, url_for, flash, render_template
+from urllib.parse import quote_plus
+
 import paginate
 import sqlalchemy as sa
+from flask import request, abort, redirect, url_for, flash, render_template, current_app
 
-import wrpylib.wrmwmarkup
-import wrpylib.wrmwcache
 import wrpylib.mwmarkup
-
+import wrpylib.wrmwcache
+import wrpylib.wrmwmarkup
 from wradmin.app import db
 from wradmin.model import WrSledrunCache, WrReport
+from wradmin.template_helper import PylonsHelper
 
 
 class RodelbahnController:
@@ -34,6 +36,16 @@ class RodelbahnController:
                                   items_per_page=25)
         return render_template('rodelbahn_view.html', sledding=sledrun, paginator=paginator)
 
+    def json_edit(self, sledrun_id):
+        q = db.session.query(WrSledrunCache)
+        sledrun = q.get(sledrun_id)
+        if sledrun is None:
+            abort(404)
+        mediawiki_index = f'{current_app.config["MEDIAWIKI_ROOT"]}/index.php'
+        schema_url = f'{mediawiki_index}?title=Winterrodeln:Datenschema/Rodelbahn/V1.json&action=raw'
+        json_url = f'{mediawiki_index}?title={quote_plus(sledrun.page_title)}/Rodelbahn.json&action=raw'
+        return render_template('json_editor.html', schema_url=schema_url, json_url=json_url)
+
     def update(self):
         """Updates the wrsledruncache table from the wiki"""
         c = db.session.connection()