1
0
mirror of https://github.com/Adam-Ant/QuotesDB synced 2024-06-14 04:57:24 +00:00

Move some structure to child files, allows more flexibility

This commit is contained in:
Adam Dodman 2017-10-05 22:05:34 +01:00
parent 130584e280
commit b99c0f195f
6 changed files with 43 additions and 30 deletions

View File

@ -1,5 +1,6 @@
{% extends "layout.html" %}
{% block body %}
<div class="container">
<h1> Add new Quote </h1>
<form method="post">
<div class="form-group">
@ -24,4 +25,5 @@
</div>
</form>
</div>
{% endblock %}

View File

@ -1,8 +1,10 @@
{% extends "layout.html" %}
{% block body %}
<div class="container">
<div class="jumbotron">
<h1>Clockwork Quotes Database</h1>
<p><a class="btn btn-lg btn-success" href="/quotes" role="button">View Quotes</a></p>
<p><a class="btn btn-lg btn-info" href="/addquote" role="button">Add a Quote</a></p>
</div>
</div>
{% endblock %}

View File

@ -54,8 +54,10 @@
{% endfor %}
{% endif %}
{% endwith %}
</div>
{% block body %}{% endblock %}
<div class="container">
<footer class="footer">
<p>&copy; Adam Dodman 2017</p>
</footer>

View File

@ -1,5 +1,6 @@
{% extends "layout.html" %}
{% block body %}
<div class="container">
<form method="post" role="form" data-toggle="validator">
<div class="form-group has-feedback">
<label class="control-label col-sm-4" for="username">Username:</label>
@ -21,6 +22,7 @@
</div>
</div>
</form>
</div>
{% endblock %}

View File

@ -1,5 +1,6 @@
{% extends "layout.html" %}
{% block body %}
<div class="container">
<h1> Password Reset: </h1>
<form method="post" role="form" data-toggle="validator">
<div class="form-group">
@ -29,6 +30,6 @@
</div>
</div>
</form>
</div>
{% endblock %}

View File

@ -17,34 +17,38 @@
{% endblock %}
{% block body %}
<div class="table-responsive">
<table class="table table-hover table-bordered" id="QuoteTable">
<thead>
<tr>
<th>Date Added</th>
<th>User</th>
<th>Quote</th>
<th>Context</th>
{% if data[1] %}
<th>Added By:</th>
<th><span class="glyphicon glyphicon-trash"></span></th>
{% endif %}
</tr>
</thead>
<tbody>
{% for entry in data[0] %}
<tr>
<td><a href="/">{{ entry[2] }}</a></td>
<td>{{ uid_to_user(entry[3]) }}</td>
<td>{{ entry[1] }}</td>
<td>{{ entry[4] }}</td>
{% if data[1] %}
<td>{{ uid_to_user(entry[5]) }}</td>
<td><a href="/deletequote?id={{ entry[0] }}" class="btn btn-danger"role="button" ><span class="glyphicon glyphicon-trash"></span></a></td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
<div class="container-fluid">
<div class="col-md-12">
<div class="table-responsive">
<table class="table table-hover table-bordered" id="QuoteTable">
<thead>
<tr>
<th>Date Added</th>
<th>User</th>
<th>Quote</th>
<th>Context</th>
{% if data[1] %}
<th>Added By:</th>
<th><span class="glyphicon glyphicon-trash"></span></th>
{% endif %}
</tr>
</thead>
<tbody>
{% for entry in data[0] %}
<tr>
<td><a href="/">{{ entry[2] }}</a></td>
<td>{{ uid_to_user(entry[3]) }}</td>
<td>{{ entry[1] }}</td>
<td>{{ entry[4] }}</td>
{% if data[1] %}
<td>{{ uid_to_user(entry[5]) }}</td>
<td><a href="/deletequote?id={{ entry[0] }}" class="btn btn-danger"role="button" ><span class="glyphicon glyphicon-trash"></span></a></td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
{% endblock %}