Got Update User working in the admin panel
[openhouseparty.online/.git] / flaskr / services.py
1
2 from flask import (
3     Blueprint, flash, g, redirect, render_template, request, url_for
4 )
5
6 bp = Blueprint('services', __name__)
7
8 #Display Data - About
9 @bp.route('/services')
10 def index():
11     return render_template('services.html')