#!/usr/bin/python # -*- coding: UTF-8 -*- from flask import Blueprint from utils.template import my_render_template afis_view = Blueprint( "afis", __name__, template_folder = "templates" ) @afis_view.route( "/afis/get/list" ) def download_list(): return my_render_template( "afis/search_list.html" )