mirror of
https://github.com/ConjureETS/site-2015.git
synced 2026-03-25 13:01:24 +00:00
7 lines
181 B
Python
7 lines
181 B
Python
from django.shortcuts import render
|
|
from blog.models import *
|
|
|
|
def index(request):
|
|
articles = Article.objects.all
|
|
return render(request, 'blog/index.html', {'articles':articles})
|