mirror of
https://github.com/netbox-community/netbox.git
synced 2025-12-11 02:49:35 -06:00
* #20048 add get_action_url utility function * #20048 add get_action_url utility function * #20048 add get_action_url utility function * #20048 add get_action_url utility function * #20048 add get_action_url utility function * #20048 action_url template tag * #20048 action_url template tag * #20048 fix test * #20048 review feedback * #20048 fix tags
43 lines
1.6 KiB
HTML
43 lines
1.6 KiB
HTML
{% extends 'generic/object.html' %}
|
|
{% load helpers %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block breadcrumbs %}
|
|
{{ block.super }}
|
|
<li class="breadcrumb-item"><a href="{% action_url object.assigned_object 'journal' pk=object.assigned_object.pk %}">{{ object.assigned_object }}</a></li>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="row mb-3">
|
|
<div class="col col-md-5">
|
|
<div class="card">
|
|
<h2 class="card-header">{% trans "Journal Entry" %}</h2>
|
|
<table class="table table-hover attr-table">
|
|
<tr>
|
|
<th scope="row">{% trans "Object" %}</th>
|
|
<td>{{ object.assigned_object|linkify }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Created" %}</th>
|
|
<td>{{ object.created|isodatetime:"minutes" }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Created By" %}</th>
|
|
<td>{{ object.created_by }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row">{% trans "Kind" %}</th>
|
|
<td>{% badge object.get_kind_display bg_color=object.get_kind_color %}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
{% include 'inc/panels/custom_fields.html' %}
|
|
{% include 'inc/panels/tags.html' %}
|
|
</div>
|
|
<div class="col col-md-7">
|
|
{% include 'inc/panels/comments.html' %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|