demo-hackernews-with-django.../app/web/views.py
Andros Fenollosa 9f6fcf447d Add statics
2021-06-23 15:10:44 +02:00

9 lines
185 B
Python

from django.shortcuts import render
def home(request):
return render(request, 'pages/list.html', {})
def add_news(request):
return render(request, 'pages/add-news.html', {})