mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 10:53:28 -05:00
10 lines
220 B
Python
10 lines
220 B
Python
from flask import render_template
|
|
from flask_login import login_required
|
|
from app.main import main
|
|
|
|
|
|
@main.route("/services")
|
|
@login_required
|
|
def choose_service():
|
|
return render_template('views/choose-service.html')
|