Skip to content
Permalink
fb7704f6c6
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
11 lines (7 sloc) 347 Bytes
from flask import Blueprint, render_template, request, url_for, escape, redirect, session
from app.functions.data_tools import data_getter
picture_bl = Blueprint('picture', __name__)
@picture_bl.route("/", methods = ["GET"])
def index():
return render_template("picture/index.html",
user = session['username'])