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

16 lines
339 B
Python
Raw Normal View History

2023-04-16 11:01:31 +00:00
from django.shortcuts import render
from django.http import HttpResponse
2023-04-18 18:04:32 +00:00
from django.views import generic
from .models import Cafe
2023-04-16 11:01:31 +00:00
2023-04-18 18:04:32 +00:00
def index(request):
2023-04-16 11:01:31 +00:00
return HttpResponse("Hello from RepApp.")
2023-04-18 18:04:32 +00:00
class IndexView(generic.ListView):
template_name = "repapp/index.html"
def get_queryset(self):
return Cafe.objects.all()