mirror of https://github.com/mitsuhiko/flask.git
Armin Ronacher
15 years ago
9 changed files with 45 additions and 2 deletions
@ -0,0 +1,7 @@ |
|||||||
|
from flask import Flask |
||||||
|
|
||||||
|
app = Flask(__name__) |
||||||
|
from moduleapp.apps.admin import admin |
||||||
|
from moduleapp.apps.frontend import frontend |
||||||
|
app.register_module(admin) |
||||||
|
app.register_module(frontend) |
@ -0,0 +1,9 @@ |
|||||||
|
from flask import Module, render_template |
||||||
|
|
||||||
|
|
||||||
|
admin = Module(__name__, url_prefix='/admin') |
||||||
|
|
||||||
|
|
||||||
|
@admin.route('/') |
||||||
|
def index(): |
||||||
|
return render_template('admin/index.html') |
@ -0,0 +1 @@ |
|||||||
|
Hello from the Admin |
@ -0,0 +1,9 @@ |
|||||||
|
from flask import Module, render_template |
||||||
|
|
||||||
|
|
||||||
|
frontend = Module(__name__) |
||||||
|
|
||||||
|
|
||||||
|
@frontend.route('/') |
||||||
|
def index(): |
||||||
|
return render_template('frontend/index.html') |
Loading…
Reference in new issue