site-2015/blog/views.py
2015-08-17 00:19:46 -04:00

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})