index.py 159 B

1234567
  1. #-*- coding:utf-8 -*-
  2. from flask import render_template
  3. from rrd import app
  4. @app.route("/")
  5. def index():
  6. return render_template("index.html", **locals())