haikal/templates/crm/opportunities/opportunity_logs.html
2025-08-31 14:49:32 +03:00

34 lines
1.1 KiB
HTML

{% extends 'base.html' %}
{% block content %}
<h1>{% trans "Logs for" %} {{ opportunity.deal_name }}</h1>
<div class="table-list" id="opportunityTable"></div>
<table>
<thead>
<tr>
<th>{% trans "Action" %}</th>
<th>{% trans "User" %}</th>
<th>{%trans Old Status %}</th>
<th>{% trans "New Status" %}</th>
<th>{% trans "Details" %}</th>
<th>{% trans "Date" %}</th>
</tr>
</thead>
<tbody>
{% for log in logs %}
<tr>
<td>{{ log.get_action_display }}</td>
<td>{{ log.user }}</td>
<td>{{ log.get_old_status_display }}</td>
<td>{{ log.get_new_status_display }}</td>
<td>{{ log.details }}</td>
<td>{{ log.created_at }}</td>
</tr>
{% empty %}
<tr>
<td colspan="6">{% trans "No logs found." %}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}