# 86 Viewport jump Compensation

* adds direct jump of viewport on related-data action (create/delete)
* adds comment field to log.html as 'details'
This commit is contained in:
2022-02-02 10:17:59 +01:00
parent 7028672b93
commit 299923ef45
5 changed files with 64 additions and 26 deletions

View File

@@ -3,12 +3,15 @@
<table class="table table-hover">
<thead>
<tr>
<th scope="col">
<th scope="col" class="w-25">
{% trans 'Timestamp' %}
</th>
<th scope="col">
{% trans 'Action' %}
</th>
<th scope="col">
{% trans 'Details' %}
</th>
<th scope="col">
{% trans 'User' %}
</th>
@@ -23,6 +26,9 @@
<td>
{{ entry.action_humanize}}
</td>
<td>
{{ entry.comment|default_if_none:"-" }}
</td>
<td>
{{entry.user}}
</td>