You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
239 B
Python

2 years ago
from flask import (Blueprint, render_template)
3 years ago
bp = Blueprint('share', __name__, url_prefix='/share')
2 years ago
@bp.route('/<tree>/<branch>/')
def share(tree=None, branch=None):
return render_template('share.html', tree=tree, branch=branch)