Skip to content

Commit

Permalink
- update nav param
Browse files Browse the repository at this point in the history
  • Loading branch information
lennardevertz committed Aug 21, 2024
1 parent e89d48c commit 2295398
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions send_blueprint.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
from flask import Blueprint, render_template

send_blueprint = Blueprint('send', __name__,
template_folder='templates',
static_folder='static',
static_url_path='/frontend/send/static')


@send_blueprint.route('/send', methods=["GET"])
def send_index():
return render_template('send-to-anyone.html')


@send_blueprint.route('/send/<nav>', methods=["GET"])
def send_nav():
return render_template('send-to-anyone.html')
from flask import Blueprint, render_template

send_blueprint = Blueprint('send', __name__,
template_folder='templates',
static_folder='static',
static_url_path='/frontend/send/static')


@send_blueprint.route('/send', methods=["GET"])
def send_index():
return render_template('send-to-anyone.html')


@send_blueprint.route('/send/<nav>', methods=["GET"])
def send_nav(nav):
return render_template('send-to-anyone.html')

0 comments on commit 2295398

Please sign in to comment.