diff --git a/GeneralApp/views.py b/GeneralApp/views.py index 0e65373..779efda 100644 --- a/GeneralApp/views.py +++ b/GeneralApp/views.py @@ -48,7 +48,7 @@ def MainPage(request): page = StaticPage.objects.get(url='main') from ArticlesApp.models import ArticleModel - arts = ArticleModel.objects.filter(enable=True).order_by('-createDT')[:4] + arts = ArticleModel.objects.filter(enable=True).order_by('-createDT')[:3] Dict = { 'page': page,