mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-20 08:47:43 +02:00
8 lines
292 B
Python
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)
|