Source code for src.web.errors

from flask import render_template


[docs]def page_not_found(e): return render_template("errors/404.html"), 404