10 lines
182 B
Python
10 lines
182 B
Python
from django.shortcuts import render
|
|
|
|
|
|
def index(request, *args, **kwargs):
|
|
return render(request, "index.html")
|
|
|
|
|
|
def sentry_debug(request):
|
|
division_by_zero = 1 / 0 # noqa
|