mirror of
https://github.com/simple-login/app.git
synced 2024-11-13 23:51:13 +01:00
17 lines
574 B
Python
17 lines
574 B
Python
from flask import render_template, flash, redirect, url_for
|
|
from flask_login import login_required, current_user
|
|
|
|
from app.dashboard.base import dashboard_bp
|
|
|
|
|
|
@dashboard_bp.route("/billing", methods=["GET", "POST"])
|
|
@login_required
|
|
def billing():
|
|
# sanity check: make sure this page is only for user who has paddle subscription
|
|
sub = current_user.get_subscription()
|
|
|
|
if not sub:
|
|
flash("You don't have any active subscription", "warning")
|
|
return redirect(url_for("dashboard.index"))
|
|
|
|
return render_template("dashboard/billing.html", sub=sub)
|