[UPDT] RECRUIMTENT: Empty page text updates

This commit is contained in:
Horilla
2024-11-24 10:44:29 +05:30
parent 98b84ce8f4
commit 648aabfa3e
3 changed files with 7 additions and 3 deletions

View File

@@ -261,7 +261,7 @@
{% else %}
<div style="height: 430px; display:flex;align-items: center;justify-content: center;" class="">
<div style="" class="">
<img style="display: block;width: 115px;margin: 20px auto ;" src="{% static 'images/ui/joiningchart.png' %}" class=""/>
<img style="display: block;width: 115px;margin: 20px auto ;" src="{% static 'images/ui/no_records.svg' %}" class=""/>
<h3 style="font-size:16px" class="oh-404__subtitle">{% trans "No records were available." %}</h3>
</div>
</div>

View File

@@ -190,7 +190,11 @@ def dashboard_pipeline(request):
}
)
return JsonResponse(
{"dataSet": data_set, "labels": labels, "message": _("No data Found...")}
{
"dataSet": data_set,
"labels": labels,
"message": _("No records available at the moment."),
}
)

View File

@@ -3102,7 +3102,7 @@ def hired_candidate_chart(request):
"data": data,
"background_color": background_color,
"border_color": border_color,
"message": _("No data Found..."),
"message": _("No records available at the moment."),
},
safe=False,
)