mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-22 20:12:00 -06:00
31 lines
1.1 KiB
HTML
31 lines
1.1 KiB
HTML
{% extends base_template %}
|
|
{% load form_helpers %}
|
|
|
|
{% render_errors form %}
|
|
|
|
{% block content %}
|
|
{% if perms.extras.add_journalentry %}
|
|
<form action="{% url 'extras:journalentry_add' %}" method="post" enctype="multipart/form-data">
|
|
<div class="col col-md-9">
|
|
<div class="field-group">
|
|
<h4>New Journal Entry</h4>
|
|
{% csrf_token %}
|
|
{% for field in form.hidden_fields %}
|
|
{{ field }}
|
|
{% endfor %}
|
|
{% render_field form.kind %}
|
|
{% render_field form.comments %}
|
|
</div>
|
|
<div class="col col-md-12 text-end my-3">
|
|
<a href="{{ object.get_absolute_url }}" class="btn btn-outline-danger">Cancel</a>
|
|
<button type="submit" class="btn btn-primary">Save</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{% endif %}
|
|
<div class="col col-md-9 mb-3">
|
|
{% include 'inc/panel_table.html' %}
|
|
</div>
|
|
{% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
|
|
{% endblock %}
|