{%extends 'base.html' %}
{%load static%}
{% load i18n %}
{% get_current_language as LANGUAGE_CODE %}
{%block styles%}
{% if LANGUAGE_CODE == 'ar' %}
custom-rtl.
{%else%}
{%endif%}
{%endblock%}
{%block content%}
| {% trans "#" %} |
{% trans "الوظائف" %} |
{% for permission in userProfile.role.permissionGeneral.all %}{% if permission.name == "عرض تفاصيل الوظائف" %}
{% trans "عرض التفاصيل" %} |
{% endif %}{% endfor %}
{% for permission in userProfile.role.permissionGeneral.all %}{% if permission.name == "تحديث الوظائف" %}
{% trans "تحديث" %} |
{% endif %}{% endfor %}
{% for permission in userProfile.role.permissionGeneral.all %}{% if permission.name == "حذف الوظائف" %}
{% trans "حذف" %} |
{% endif %}{% endfor %}
{%endblock%}
{% block Extrajavascripts %}
{% endblock %}