website-2018/sgawebsite/apps/main/views.py
2018-05-02 16:02:17 -04:00

15 lines
275 B
Python

from django.shortcuts import render
@app.route("/")
def index():
announcements = Announcement.query.all()
return render_template(
"index.html",
prefix=ROOT_URL,
announcements=announcements)
# Create your views here.
def index():
return