Skip to content

Commit

Permalink
Merge pull request #11731 from snipe/fixes/add_sig_column_to_user_his…
Browse files Browse the repository at this point in the history
…tory

Fixed #10593 - added signature column to user history
  • Loading branch information
snipe committed Aug 25, 2022
2 parents 2ad9c39 + 36ab794 commit c9ef49e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions resources/views/users/view.blade.php
Expand Up @@ -908,6 +908,9 @@ class="table table-striped snipe-table"
<th class="col-sm-3" data-field="created_at" data-formatter="dateDisplayFormatter" data-sortable="true">{{ trans('general.date') }}</th>
<th class="col-sm-2" data-field="admin" data-formatter="usersLinkObjFormatter">{{ trans('general.admin') }}</th>
<th class="col-sm-2" data-field="action_type">{{ trans('general.action') }}</th>
@if ($snipeSettings->require_accept_signature=='1')
<th class="col-md-3" data-field="signature_file" data-visible="false" data-formatter="imageFormatter">{{ trans('general.signature') }}</th>
@endif
<th class="col-sm-3" data-field="item" data-formatter="polymorphicItemFormatter">{{ trans('general.item') }}</th>
<th class="col-sm-2" data-field="target" data-formatter="polymorphicItemFormatter">{{ trans('general.target') }}</th>
</tr>
Expand Down

0 comments on commit c9ef49e

Please sign in to comment.