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