mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends base_template %}
 | 
						|
{% load form_helpers %}
 | 
						|
{% load render_table from django_tables2 %}
 | 
						|
 | 
						|
{% render_errors form %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
  {% if perms.extras.add_journalentry %}
 | 
						|
    <form action="{% url 'extras:journalentry_add' %}" method="post" enctype="multipart/form-data">
 | 
						|
      <div class="container">
 | 
						|
        <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="card">
 | 
						|
    <div class="card-body table-responsive">
 | 
						|
      {% render_table table 'inc/table.html' %}
 | 
						|
      {% include 'inc/paginator.html' with paginator=table.paginator page=table.page %}
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
{% endblock %}
 |