mirror of
https://github.com/tjsga/website-2018.git
synced 2025-04-20 19:20:17 -04:00
15 lines
275 B
Python
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
|