mirror of
https://github.com/RichieCahill/dotfiles.git
synced 2026-04-17 13:08:19 -04:00
15 lines
362 B
HTML
15 lines
362 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Contacts{% endblock %}
|
|
{% block content %}
|
|
<div class="contact-list">
|
|
<div class="header">
|
|
<h1>Contacts</h1>
|
|
<a href="/contacts/new" class="btn btn-primary">Add Contact</a>
|
|
</div>
|
|
|
|
<div id="contact-table">
|
|
{% include "partials/contact_table.html" %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|