This repository has been archived on 2026-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
RepApp/rc_hip/repapp/views.py

15 lines
339 B
Python

from django.shortcuts import render
from django.http import HttpResponse
from django.views import generic
from .models import Cafe
def index(request):
return HttpResponse("Hello from RepApp.")
class IndexView(generic.ListView):
template_name = "repapp/index.html"
def get_queryset(self):
return Cafe.objects.all()