Здравствуйте! Я пишу сайт на питон и у меня возникает ошибка:
SyntaxError: unexpected EOF while parsing
Мой код:
from django.conf.urls import url, include
from django.views.generic import ListView, DetailView
from news.models import Articles
urlpatterns = [
url(r'^$', ListView.as_view(queryset=Articles.objects.all().order_by("-date")[:20], template_name="news/posts.html")),
url(r'^(?P\d+)$', DetailView.as_view(model = Articles, template_name = "news/post.html"))
Что я делаю не так? Всё не могу понять:(
-
Вопрос задан
-
436 просмотров