mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-14 09:51:22 -06:00
Changelog & cleanup for #8556
This commit is contained in:
parent
f058850598
commit
dd848d754f
@ -6,6 +6,8 @@
|
|||||||
|
|
||||||
* [#7150](https://github.com/netbox-community/netbox/issues/7150) - Linkify devices on the far side of a rack elevation
|
* [#7150](https://github.com/netbox-community/netbox/issues/7150) - Linkify devices on the far side of a rack elevation
|
||||||
* [#8398](https://github.com/netbox-community/netbox/issues/8398) - Embiggen configuration form fields for banner message content
|
* [#8398](https://github.com/netbox-community/netbox/issues/8398) - Embiggen configuration form fields for banner message content
|
||||||
|
* [#8556](https://github.com/netbox-community/netbox/issues/8556) - Add full username column to changelog table
|
||||||
|
* [#8620](https://github.com/netbox-community/netbox/issues/8620) - Enable tab completion for `nbshell`
|
||||||
|
|
||||||
### Bug Fixes
|
### Bug Fixes
|
||||||
|
|
||||||
|
@ -30,11 +30,8 @@ CONFIGCONTEXT_ACTIONS = """
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
OBJECTCHANGE_FULL_NAME = """
|
OBJECTCHANGE_FULL_NAME = """
|
||||||
{% if record.user.first_name or record.user.last_name %}
|
{% load helpers %}
|
||||||
{{ record.user.first_name }} {{ record.user.last_name }}
|
{{ record.user.get_full_name|placeholder }}
|
||||||
{% else %}
|
|
||||||
{{ record.user|default:record.user_name }}
|
|
||||||
{% endif %}
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
OBJECTCHANGE_OBJECT = """
|
OBJECTCHANGE_OBJECT = """
|
||||||
|
@ -36,21 +36,15 @@
|
|||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row">Full Name</th>
|
<th scope="row">User</th>
|
||||||
<td>
|
<td>
|
||||||
{% if object.user.first_name or object.user.last_name %}
|
{% if object.user.get_full_name %}
|
||||||
{{ object.user.first_name }} {{ object.user.last_name }}
|
{{ object.user.get_full_name }} ({{ object.user_name }})
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ object.user|default:object.user_name }}
|
{{ object.user_name }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
|
||||||
<th scope="row">Username</th>
|
|
||||||
<td>
|
|
||||||
{{ object.user|default:object.user_name }}
|
|
||||||
</td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
<tr>
|
||||||
<th scope="row">Action</th>
|
<th scope="row">Action</th>
|
||||||
<td>
|
<td>
|
||||||
|
Loading…
Reference in New Issue
Block a user