35 lines
1.0 KiB
HTML
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 %} |