{% extends "base.html" %} {% block title %}إدارة المستخدمين - سجل العقارات اللبناني{% endblock %} {% block content %}
{% if backup_msg %}
{{ backup_msg }}
{% endif %} {% if error %}
{{ error }}
{% endif %}

نسخ احتياطي لقاعدة البيانات

قم بإنشاء نسخة احتياطية من قاعدة البيانات الحالية.

إنشاء نسخة احتياطية

إضافة مستخدم جديد

المستخدمين

{% for user in users %} {% endfor %}
الرقم اسم المستخدم الصلاحية تاريخ الإنشاء
{{ user.id }} {{ user.username }} {% if current_user and user.id == current_user.user_id %}(أنت){% endif %}
{% if not (current_user and user.id == current_user.user_id) %} {% endif %}
{{ user.created_at }} {% if current_user and user.id == current_user.user_id %} {% else %}
{% endif %}
{% endblock %}