{% extends "base.html" %} {% block title %}People - IT Asset Tracker{% endblock %} {% block content %}
{% if people %}
{% for person in people %}
{{ person.name }}
{% if person.position %}{{ person.position }}
{% endif %} {% if person.location %}{{ person.location }}
{% endif %} {% if person.email %}{{ person.email }}{% endif %}
{% endfor %}
{% for person in people %} {% endfor %}
Name Location Position Phone Email Actions
{{ person.name }} {{ person.location or '-' }} {{ person.position or '-' }} {{ person.phone or '-' }} {{ person.email or '-' }} Edit
{% else %}

No people found{% if search %} matching "{{ search }}"{% endif %}.

Add First Person
{% endif %} {% endblock %}