haikal/templates/crm/opportunities/opportunity_logs.html
2025-05-15 19:29:22 +03:00

35 lines
1.0 KiB
HTML

{% extends 'base.html' %}
{% block content %}
<h1>Logs for {{ opportunity.deal_name }}</h1>
<div class="table-list" id="opportunityTable">
</div>
<table>
<thead>
<tr>
<th>Action</th>
<th>User</th>
<th>Old Status</th>
<th>New Status</th>
<th>Details</th>
<th>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">No logs found.</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}