mirror of
https://github.com/simple-login/app.git
synced 2024-11-10 21:27:10 +01:00
18 lines
593 B
Python
18 lines
593 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
|
||
|
if not current_user.is_premium():
|
||
|
flash("This page is for paid customer only", "warning")
|
||
|
return redirect(url_for("dashboard.index"))
|
||
|
|
||
|
sub = current_user.get_subscription()
|
||
|
|
||
|
return render_template("dashboard/billing.html", sub=sub)
|