Add authorized template
This commit is contained in:
parent
ef9951fcbe
commit
9870b11664
|
|
@ -0,0 +1,22 @@
|
||||||
|
{% extends "base.html" %}
|
||||||
|
{% block content %}
|
||||||
|
<div class="container-fluid">
|
||||||
|
<div class="row align-items-stretch">
|
||||||
|
<div id="menu" class="col-md-2 bg-light">
|
||||||
|
<!-- internal menu -->
|
||||||
|
<h2>Menu</h2>
|
||||||
|
<ul>
|
||||||
|
<li><a href="/dashboard">Web links</a></li>
|
||||||
|
<li><a href="/useradmin">User Administration</a></li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
<div class="col-8">
|
||||||
|
{% block center %}{% endblock center %}
|
||||||
|
</div>
|
||||||
|
<div id="events" class="col-2 bg-light">
|
||||||
|
<!-- events -->
|
||||||
|
<h2>Events</h2>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
{% endblock content %}
|
||||||
|
|
@ -1,39 +1,21 @@
|
||||||
{% extends "base.html" %}
|
{% extends "authorized.html" %}
|
||||||
{% block content %}
|
{% block center %}
|
||||||
<div class="container-fluid">
|
<p>This will be the private information area for the extended Jean-Marie family.</p>
|
||||||
<div class="row align-items-stretch">
|
<div>
|
||||||
<div id="menu" class="col-md-2 bg-light">
|
<h2>Web links</h2>
|
||||||
<!-- internal menu -->
|
<h3>TLC Creations</h3>
|
||||||
<h2>Menu</h2>
|
<ul>
|
||||||
<ul>
|
<li><a href="https://www.tlccreations.ca">TLC Creations</a></li>
|
||||||
<li>Web links</li>
|
</ul>
|
||||||
<li><a href="/useradmin">User Administration</a></li>
|
<h3>Fonts</h3>
|
||||||
</ul>
|
<ul>
|
||||||
</div>
|
<li><a href="https://fonts.google.com">Google fonts</a></li>
|
||||||
<div class="col-8">
|
<li><a href="https://www.fontspace.com">Font Space</a></li>
|
||||||
<p>This will be the private information area for the extended Jean-Marie family.</p>
|
</ul>
|
||||||
<div>
|
<h3>Family tree</h3>
|
||||||
<h2>Web links</h2>
|
<ul>
|
||||||
<h3>TLC Creations</h3>
|
<li><a href="https://www.ancestry.com">Ancestry</a></li>
|
||||||
<ul>
|
<li><a href="https://www.geni.com">Geni</a></li>
|
||||||
<li><a href="https://www.tlccreations.ca">TLC Creations</a></li>
|
</ul>
|
||||||
</ul>
|
|
||||||
<h3>Fonts</h3>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://fonts.google.com">Google fonts</a></li>
|
|
||||||
<li><a href="https://www.fontspace.com">Font Space</a></li>
|
|
||||||
</ul>
|
|
||||||
<h3>Family tree</h3>
|
|
||||||
<ul>
|
|
||||||
<li><a href="https://www.ancestry.com">Ancestry</a></li>
|
|
||||||
<li><a href="https://www.geni.com">Geni</a></li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<div id="events" class="col-2 bg-light">
|
|
||||||
<!-- events -->
|
|
||||||
<h2>Events</h2>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
{% endblock content %}
|
{% endblock center %}
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{% extends "base.html" %}
|
{% extends "authorized.html" %}
|
||||||
{% block title %}User Profile{% endblock %}
|
{% block title %}User Administration{% endblock %}
|
||||||
{% block content %}
|
{% block center %}
|
||||||
<h1>Users</h1>
|
<h1>Users</h1>
|
||||||
<table class="table table-striped">
|
<table class="table table-striped">
|
||||||
<thead>
|
<thead>
|
||||||
|
|
@ -20,4 +20,4 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
{% endblock %}
|
{% endblock center %}
|
||||||
Loading…
Reference in New Issue