12 lines
No EOL
290 B
Python
12 lines
No EOL
290 B
Python
from flask import Blueprint, render_template
|
|
|
|
import crudkit
|
|
|
|
bp_testing = Blueprint("testing", __name__)
|
|
|
|
def init_testing_routes(app):
|
|
@bp_testing.get('/testing')
|
|
def test_page():
|
|
return render_template('testing.html', grid_size=25)
|
|
|
|
app.register_blueprint(bp_testing) |