Hi
please help me … i have table in dashboard .html to preview data from db but it do not preview anything …
here is my codes
–
views.py
@login_required(login_url='login')
def dashboard(request):
employees = Employees.objects.all()
return render(request,'employees/dashboard.html',{"emp": employees})
–
dashboard.html
{% extends 'employees/base.html'%}
{% block content %}
<h4>مرحبا بك بموقع قسم الجودة والتقييم المؤسسي - شعبة الملاك</h4>
<h5> Welcome, {{user}}! 👋 </h5>
<hr>
<a class="btn btn-outline-primary btn-sm" href="{%url 'add_emp'%}">
اضـــافــة بيــانــات <i class="fa fa-plus-circle" aria-hidden="true"></i>
</a>
<hr>
<table class="table table-striped">
<thead>
<tr>
<th scope="col">ت</th>
<th scope="col">الاسم الرباعي</th>
<th scope="col"> الجنس</th>
<th scope="col"> العنوان الوظيفي</th>
<th scope="col"> الدرجة الوظيفية </th>
<th scope="col"> التحصيل الدراسي</th>
<th scope="col"> التخصص الدقيق</th>
<th scope="col"> اسم الام الثلاثي</th>
<th scope="col"> تاريخ الميلاد</th>
<th scope="col"> العمر</th>
<th scope="col"> تاريخ التعيين </th>
<th scope="col"> حالة الموظف </th>
<th scope="col"> الخدمة الكلية </th>
<th scope="col"> طبيعة العمل </th>
<th scope="col"> الوضع الاجتماعي </th>
<th scope="col"> نوع المسؤولية </th>
<th scope="col"> موقع العمل </th>
<th scope="col"> الجهة المنسب اليها </th>
<th scope="col"> الجهة المنسب منها </th>
<th scope="col">View</th>
</tr>
</thead>
<tbody>
{% for emp in employees %}
<tr>
<td> {{emp.id}} </td>
<td> {{emp.الاسم_الرباعي}} </td>
<td> {{emp.الجنس}} </td>
<td> {{emp.العنوان_الوظيفي}} </td>
<td> {{emp.الدرجة_الوظيفية}} </td>
<td> {{emp.التحصيل_الدراسي}} </td>
<td> {{emp.التخصص_الدقيق}} </td>
<td> {{emp.اسم_الام_الثلاثي}} </td>
<td> {{emp.تاريخ_الميلاد}} </td>
<td> {{emp.العمر}} </td>
<td> {{emp.تاريخ_التعيين}} </td>
<td> {{emp.حالة_الموظف}} </td>
<td> {{emp.الخدمة_الكلية}} </td>
<td> {{emp.طبيعة_العمل}} </td>
<td> {{emp.الوضع_الاجتماعي}} </td>
<td> {{emp.نوع_المسؤولية}} </td>
<td> {{emp.موقع_العمل}} </td>
<td> {{emp.الجهة_المنسب_اليها}} </td>
<td> {{emp.الجهة_المنسب_منها}} </td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}