14 lines
486 B
Python
14 lines
486 B
Python
from django.shortcuts import render
|
|
from blog.models import Entrada, Categoria
|
|
# Create your views here.
|
|
|
|
def blog(request):
|
|
entradas = Entrada.objects.all()
|
|
return render(request, "blog/blog.html", {"entradas":entradas})
|
|
|
|
def categoria(request, categoria_id):
|
|
categoria = Categoria.objects.get( id=categoria_id )
|
|
entrada = Entrada.objects.filter( categorias = categoria )
|
|
return render(request, "blog/categorias.html", {'categoria':categoria, 'entradas':entrada})
|
|
|