10 lines
267 B
Python
Executable File
10 lines
267 B
Python
Executable File
from django.shortcuts import render, redirect, get_object_or_404
|
|
from django.core.paginator import Paginator
|
|
from django.db.models import Q
|
|
from django.contrib.auth.decorators import login_required
|
|
|
|
def articles(request):
|
|
|
|
return render(request, 'blog/blog.html')
|
|
|