Fixed casing for modules, removed unused page

This commit is contained in:
alexjanousekGSA
2025-08-06 18:29:18 -04:00
parent 3a230f15b6
commit 2b99d818b6
17 changed files with 16 additions and 195 deletions

View File

@@ -35,18 +35,3 @@ def how_to_pay():
"views/pricing/how-to-pay.html",
navigation_links=using_notify_nav(),
)
@main.route("/pricing/billing-details")
@user_is_logged_in
def billing_details():
if current_user.is_authenticated:
return render_template(
"views/pricing/billing-details.html",
billing_details=current_app.config["NOTIFY_BILLING_DETAILS"],
navigation_links=using_notify_nav(),
)
return render_template(
"views/pricing/billing-details-signed-out.html",
navigation_links=using_notify_nav(),
)