mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	* Move L2VPN and L2VPNTermination models from ipam to vpn * Move L2VPN resources from ipam to vpn * Extend migration to update content types * Misc cleanup
		
			
				
	
	
		
			33 lines
		
	
	
		
			1011 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			1011 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'generic/object.html' %}
 | 
						|
{% load helpers %}
 | 
						|
{% load i18n %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<div class="row">
 | 
						|
	<div class="col col-md-6">
 | 
						|
        <div class="card">
 | 
						|
            <h5 class="card-header">
 | 
						|
                {% trans "L2VPN Attributes" %}
 | 
						|
            </h5>
 | 
						|
            <div class="card-body">
 | 
						|
                <table class="table table-hover">
 | 
						|
                    <tr>
 | 
						|
                        <th scope="row">{% trans "L2VPN" %}</th>
 | 
						|
                        <td>{{ object.l2vpn|linkify }}</td>
 | 
						|
                    </tr>
 | 
						|
                    <tr>
 | 
						|
                        <th scope="row">{% trans "Assigned Object" %}</th>
 | 
						|
                        <td>{{ object.assigned_object|linkify }}</td>
 | 
						|
                    </tr>
 | 
						|
                </table>
 | 
						|
            </div>
 | 
						|
        </div>
 | 
						|
	</div>
 | 
						|
	<div class="col col-md-6">
 | 
						|
        {% include 'inc/panels/custom_fields.html' %}
 | 
						|
        {% include 'inc/panels/tags.html' with tags=object.tags.all url='vpn:l2vpntermination_list' %}
 | 
						|
    </div>
 | 
						|
</div>
 | 
						|
 | 
						|
{% endblock %}
 |