Skip to content
__init__.py 316 B
Newer Older
#!/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 get_list():
    return my_render_template( 
        "afis/search_list.html"
    )