mirror of
https://github.com/aljazceru/CTFd.git
synced 2025-12-17 14:04:20 +01:00
* Format Javascript and CSS files with `prettier`: `prettier --write 'CTFd/themes/**/*'` * Format Python with `black`: `black CTFd` & `black tests` * Travis now uses xenial instead of trusty.
44 lines
1.2 KiB
Python
44 lines
1.2 KiB
Python
from flask import render_template, request
|
|
from CTFd.utils.decorators import admins_only
|
|
from CTFd.models import Pages
|
|
from CTFd.schemas.pages import PageSchema
|
|
from CTFd.utils import markdown
|
|
from CTFd.admin import admin
|
|
|
|
|
|
@admin.route("/admin/pages")
|
|
@admins_only
|
|
def pages_listing():
|
|
pages = Pages.query.all()
|
|
return render_template("admin/pages.html", pages=pages)
|
|
|
|
|
|
@admin.route("/admin/pages/new")
|
|
@admins_only
|
|
def pages_new():
|
|
return render_template("admin/editor.html")
|
|
|
|
|
|
@admin.route("/admin/pages/preview", methods=["POST"])
|
|
@admins_only
|
|
def pages_preview():
|
|
data = request.form.to_dict()
|
|
schema = PageSchema()
|
|
page = schema.load(data)
|
|
return render_template("page.html", content=markdown(page.data.content))
|
|
|
|
|
|
@admin.route("/admin/pages/<int:page_id>")
|
|
@admins_only
|
|
def pages_detail(page_id):
|
|
page = Pages.query.filter_by(id=page_id).first_or_404()
|
|
page_op = request.args.get("operation")
|
|
|
|
if request.method == "GET" and page_op == "preview":
|
|
return render_template("page.html", content=markdown(page.content))
|
|
|
|
if request.method == "GET" and page_op == "create":
|
|
return render_template("admin/editor.html")
|
|
|
|
return render_template("admin/editor.html", page=page)
|