XH_Digital_Management/application/org_mgnt/views.py

14 lines
364 B
Python
Raw Normal View History

2024-05-15 09:23:16 +08:00
from django.shortcuts import render
def entity_information_registration(request):
return render(request, 'org_mgnt/entity_information_registration.html')
def primary_departments(request):
return render(request, 'org_mgnt/primary_departments.html')
def secondary_departments(request):
return render(request, 'org_mgnt/secondary_departments.html')