def education(): educationorgs = Organization.objects(category="Education") return render_template("education.html", educationorgs=educationorgs)
def corporations(): corporations = Organization.objects(types="Corporation") return render_template("corporations.html", corporations=corporations)
def other(): otherorgs = Organization.objects(category="Other") return render_template("other.html", otherorgs=otherorgs)
def cultural(): culturalorgs = Organization.objects(category="Cultural") return render_template("cultural.html", culturalorgs=culturalorgs)
def environment(): environmentorgs = Organization.objects(category="Environment") return render_template("environment.html", environmentorgs=environmentorgs)
def health(): healthorgs = Organization.objects(category="Health") return render_template("health.html", healthorgs=healthorgs)