Files
rengine/notification/views.py
T
2020-05-22 11:27:10 +05:30

8 lines
292 B
Python

from django.shortcuts import render
from .models import NotificationHooks
def index(request):
notification_hooks = NotificationHooks.objects
context = {'notification_nav_active': 'true', 'all_hooks': notification_hooks}
return render(request, 'notification/index.html', context)