15 lines
420 B
HTML
15 lines
420 B
HTML
{% extends "common/base.html" %}
|
|
{% from "components/header.html" import header %}
|
|
|
|
{% block title %}Contacts - DocuPulse{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ header(
|
|
title="Contacts",
|
|
description="Manage your contacts and their information",
|
|
button_text="Add Contact",
|
|
button_url="/contacts/new",
|
|
icon="fa-address-book"
|
|
) }}
|
|
<p class="text-muted">Your contacts will appear here.</p>
|
|
{% endblock %} |