mirror of
https://github.com/Xevion/runnerspace.git
synced 2025-12-10 14:08:33 -06:00
added comments for when placeholders are removed
This commit is contained in:
@@ -5,8 +5,10 @@ main = Blueprint('main', __name__)
|
|||||||
|
|
||||||
@main.route('/')
|
@main.route('/')
|
||||||
def index():
|
def index():
|
||||||
return 'Index'
|
# return render_template('index.html')
|
||||||
|
return 'Index' # placeholder
|
||||||
|
|
||||||
@main.route('/profile')
|
@main.route('/profile')
|
||||||
def profile():
|
def profile():
|
||||||
return 'Profile'
|
# return render_template('profile.html')
|
||||||
|
return 'Profile' # placeholder
|
||||||
Reference in New Issue
Block a user