This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
django-stock/homepage/views.py

14 lines
426 B
Python

from django.db.models import F
from django.http import HttpResponse, HttpResponseRedirect
from django.shortcuts import render, get_object_or_404
from django.urls import reverse
from django.views import generic
from .models import Application
class IndexView(generic.ListView):
model = Application
template_name = 'homepage/index.html'
def get_queryset(self):
return Application.objects.order_by('name')