push latest changes
This commit is contained in:
parent
7523a19d1f
commit
cb2b5c2c2b
63 changed files with 3158 additions and 1552 deletions
10
views/transcode/__init__.py
Normal file
10
views/transcode/__init__.py
Normal file
|
@ -0,0 +1,10 @@
|
|||
from flask import Blueprint, render_template
|
||||
|
||||
from utils import admin_required
|
||||
transcode_page = Blueprint("transcode", __name__, url_prefix="/transcode")
|
||||
|
||||
|
||||
@transcode_page.route("/", methods=["GET", "POST"])
|
||||
@admin_required
|
||||
def index():
|
||||
return render_template("transcode/profiles.html")
|
Loading…
Add table
Add a link
Reference in a new issue