Все пользователи отображаются как «Активные», хотя они должны быть неактивными, [закрыто]

list.html

<p>Active Status: {% if datas.employee.is_active %}Active{% else %}Inactive{% endif %}</p>

models.py

class Employee(models.Model):

is_active = models.BooleanField(default=True)
def delete(self):
    self.is_active = True
    self.save()
)
Вернуться на верх