Exemplo n.º 1
0
def education():
    educationorgs = Organization.objects(category="Education")
    return render_template("education.html", educationorgs=educationorgs)
Exemplo n.º 2
0
def corporations():
    corporations = Organization.objects(types="Corporation")
    return render_template("corporations.html", corporations=corporations)
Exemplo n.º 3
0
def other():
    otherorgs = Organization.objects(category="Other")
    return render_template("other.html", otherorgs=otherorgs)
Exemplo n.º 4
0
def cultural():
    culturalorgs = Organization.objects(category="Cultural")
    return render_template("cultural.html", culturalorgs=culturalorgs)
Exemplo n.º 5
0
def environment():
    environmentorgs = Organization.objects(category="Environment")
    return render_template("environment.html", environmentorgs=environmentorgs)
Exemplo n.º 6
0
def health():
    healthorgs = Organization.objects(category="Health")
    return render_template("health.html", healthorgs=healthorgs)