10 lines
198 B
Python
10 lines
198 B
Python
|
|
import os
|
||
|
|
from flask import render_template, current_app
|
||
|
|
from . import blueprint
|
||
|
|
|
||
|
|
|
||
|
|
@blueprint.route('/home')
|
||
|
|
def apply_home():
|
||
|
|
rendered = render_template('apply/index.html')
|
||
|
|
return rendered
|