from django.shortcuts import render # Create your views here. def social_media_account_registration(request): return render(request, 'opa_mgnt/social_media_account_registration.html') def account_operation_management(request): return render(request, 'opa_mgnt/account_operation_management.html') def website_registration(request): return render(request, 'opa_mgnt/website_registration.html') def website_maintenance_record(request): return render(request, 'opa_mgnt/website_maintenance_record.html')