mirror of
				https://github.com/netbox-community/netbox.git
				synced 2024-05-10 07:54:54 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			91 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			91 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'generic/object.html' %}
 | 
						|
{% load helpers %}
 | 
						|
{% load plugins %}
 | 
						|
{% load render_table from django_tables2 %}
 | 
						|
{% load i18n %}
 | 
						|
 | 
						|
{% block breadcrumbs %}
 | 
						|
  {{ block.super }}
 | 
						|
  {% if object.group %}
 | 
						|
    <li class="breadcrumb-item"><a href="{% url 'tenancy:contact_list' %}?group_id={{ object.group.pk }}">{{ object.group }}</a></li>
 | 
						|
  {% endif %}
 | 
						|
{% endblock breadcrumbs %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
  <div class="row">
 | 
						|
    <div class="col col-md-7">
 | 
						|
      <div class="card">
 | 
						|
        <h5 class="card-header">{% trans "Contact" %}</h5>
 | 
						|
        <table class="table table-hover attr-table">
 | 
						|
          <tr>
 | 
						|
            <th scope="row">{% trans "Group" %}</th>
 | 
						|
            <td>{{ object.group|linkify|placeholder }}</td>
 | 
						|
          </tr>
 | 
						|
          <tr>
 | 
						|
            <th scope="row">{% trans "Name" %}</th>
 | 
						|
            <td>{{ object.name }}</td>
 | 
						|
          </tr>
 | 
						|
          <tr>
 | 
						|
            <th scope="row">{% trans "Title" %}</th>
 | 
						|
            <td>{{ object.title|placeholder }}</td>
 | 
						|
          </tr>
 | 
						|
          <tr>
 | 
						|
            <th scope="row">{% trans "Phone" %}</th>
 | 
						|
            <td>
 | 
						|
              {% if object.phone %}
 | 
						|
                <a href="tel:{{ object.phone }}">{{ object.phone }}</a>
 | 
						|
              {% else %}
 | 
						|
                {{ ''|placeholder }}
 | 
						|
              {% endif %}
 | 
						|
            </td>
 | 
						|
          </tr>
 | 
						|
          <tr>
 | 
						|
            <th scope="row">{% trans "Email" %}</th>
 | 
						|
            <td>
 | 
						|
              {% if object.email %}
 | 
						|
                <a href="mailto:{{ object.email }}">{{ object.email }}</a>
 | 
						|
              {% else %}
 | 
						|
                {{ ''|placeholder }}
 | 
						|
              {% endif %}
 | 
						|
            </td>
 | 
						|
          </tr>
 | 
						|
          <tr>
 | 
						|
            <th scope="row">{% trans "Address" %}</th>
 | 
						|
            <td>{{ object.address|linebreaksbr|placeholder }}</td>
 | 
						|
          </tr>
 | 
						|
          <tr>
 | 
						|
            <th scope="row">{% trans "Link" %}</th>
 | 
						|
            <td>
 | 
						|
              {% if object.link %}
 | 
						|
                <a href="{{ object.link }}">{{ object.link }}</a>
 | 
						|
              {% else %}
 | 
						|
                {{ ''|placeholder }}
 | 
						|
              {% endif %}
 | 
						|
            </td>
 | 
						|
          </tr>
 | 
						|
          <tr>
 | 
						|
            <th scope="row">{% trans "Description" %}</th>
 | 
						|
            <td>{{ object.description|placeholder }}</td>
 | 
						|
          </tr>
 | 
						|
        </table>
 | 
						|
      </div>
 | 
						|
      {% include 'inc/panels/tags.html' %}
 | 
						|
      {% plugin_left_page object %}
 | 
						|
    </div>
 | 
						|
    <div class="col col-md-5">
 | 
						|
      {% include 'inc/panels/comments.html' %}
 | 
						|
      {% include 'inc/panels/custom_fields.html' %}
 | 
						|
      {% plugin_right_page object %}
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
  <div class="row mb-3">
 | 
						|
    <div class="col col-md-12">
 | 
						|
      <div class="card">
 | 
						|
        <h5 class="card-header">{% trans "Assignments" %}</h5>
 | 
						|
        {% htmx_table 'tenancy:contactassignment_list' contact_id=object.pk %}
 | 
						|
      </div>
 | 
						|
      {% plugin_full_width_page object %}
 | 
						|
    </div>
 | 
						|
  </div>
 | 
						|
{% endblock %}
 |