fix: Add heading to all pages

This commit is contained in:
James Graham
2020-04-02 18:35:24 +01:00
parent c7a6c72219
commit eea4342455
14 changed files with 29 additions and 1 deletions

View File

@@ -10,6 +10,8 @@
</ol> </ol>
</nav> </nav>
<h1>New Activity</h1>
<hr> <hr>
<form class="form" <form class="form"

View File

@@ -10,6 +10,8 @@
</ol> </ol>
</nav> </nav>
<h1>{{ activity.name }}</h1>
{% if user_is_attending %} {% if user_is_attending %}
<button class="btn btn-danger" <button class="btn btn-danger"
onclick="clickCancelAttend();"> onclick="clickCancelAttend();">

View File

@@ -7,6 +7,8 @@
</ol> </ol>
</nav> </nav>
<h1>Activities</h1>
<hr> <hr>
<a class="btn btn-success" <a class="btn btn-success"

View File

@@ -10,6 +10,8 @@
</ol> </ol>
</nav> </nav>
<h1>{{ activity_series.name }}</h1>
<hr> <hr>
<dl> <dl>

View File

@@ -7,6 +7,8 @@
</ol> </ol>
</nav> </nav>
<h1>Activity Series</h1>
<hr> <hr>
<table class="table table-borderless"> <table class="table table-borderless">

View File

@@ -7,6 +7,8 @@
</ol> </ol>
</nav> </nav>
<h1>Export Data</h1>
<hr> <hr>
<table class="table table-borderless"> <table class="table table-borderless">

View File

@@ -7,6 +7,8 @@
</ol> </ol>
</nav> </nav>
<h1>Network View</h1>
<hr> <hr>
<form class="form" <form class="form"

View File

@@ -10,6 +10,8 @@
</ol> </ol>
</nav> </nav>
<h1>New Person</h1>
<hr> <hr>
<form class="form" <form class="form"

View File

@@ -10,7 +10,9 @@
</ol> </ol>
</nav> </nav>
<h1>{{ person }}</h1> <h1>{{ person.name }}</h1>
<hr>
<dl> <dl>
{% if person.gender %} {% if person.gender %}

View File

@@ -7,6 +7,8 @@
</ol> </ol>
</nav> </nav>
<h1>People</h1>
<hr> <hr>
{% if request.user.is_staff %} {% if request.user.is_staff %}

View File

@@ -13,6 +13,8 @@
</ol> </ol>
</nav> </nav>
<h1>{{ person.name }}</h1>
<hr> <hr>
<form class="form" <form class="form"

View File

@@ -13,6 +13,8 @@
</ol> </ol>
</nav> </nav>
<h1>New Relationship</h1>
<hr> <hr>
<form class="form" <form class="form"

View File

@@ -13,6 +13,8 @@
</ol> </ol>
</nav> </nav>
<h1>Relationship</h1>
<hr> <hr>
<div class="row align-content-center align-items-center"> <div class="row align-content-center align-items-center">

View File

@@ -16,6 +16,8 @@
</ol> </ol>
</nav> </nav>
<h1>Update Relationship</h1>
<hr> <hr>
<form class="form" <form class="form"