You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

15 lines
328 B

from django.contrib.auth.decorators import login_required
from django.shortcuts import render
from hc.checks.models import Canary
@login_required
def checks(request):
canaries = Canary.objects.filter(user=request.user)
ctx = {
"canaries": canaries
}
return render(request, "checks/index.html", ctx)