network_inventory/customers/templates/customers/customer_details.html

7 lines
188 B
HTML

{% extends "core/base.html" %}
{% block section_title %}{{ customer.name }}{% endblock %}
{% block content %}
<h3>Description</h3>
<p>{{ customer.description }}</p>
{% endblock %}