def index(): return render_template("index.html", all_dojos=Dojo.show_all())
def new_ninja(): return render_template("new_ninja.html", all_dojos=Dojo.show_all())
def new_dojo(): Dojo.new_dojo(request.form) return render_template("index.html", all_dojos=Dojo.show_all())