Browse Source

changes

ansible-setup-and-deploy
Alex 6 years ago
parent
commit
4fce8cc5c5
  1. 8
      app/templates/show_author_detail.html
  2. 6
      app/templates/show_book_detail.html
  3. 2
      app/templates/show_books.html
  4. 14
      app/views.py
  5. 2
      run.py

8
app/templates/show_author_detail.html

@ -6,11 +6,15 @@
<h1 class="header">{{ author.author_name }}</h1>
<p>Books: {% for book in author.books %}
<p>Book(s): {% for book in author.books %}
<li> {{ book.title }}</li>
<li> <a href="{{url_for('show_book_by_id', id=book.id)}}">{{ book.title }}</a> </li>
{% endfor %}</p>
<br>
<br>
<a href="{{ url_for('edit_author_by_id', id=author.id )}}">edit</a>
</div>
{% endblock %}

6
app/templates/show_book_detail.html

@ -7,11 +7,11 @@
<img src="../uploads/cover/{{ book.cover }}" width="200">
<p>Author(s): {% for author in book.authors %}
<p>Author(s): <ul>{% for author in book.authors %}
<li> {{ author.author_name }}</li>
<li><a href="{{url_for('show_author_by_id', id=author.id)}}">{{ author.author_name }}</a> </li>
{% endfor %}</p>
{% endfor %}</ul></p>
<a href="../uploads/{{ book.file }}">download {{ book.fileformat }}</a>
<br>

2
app/templates/show_books.html

@ -30,7 +30,7 @@
<td> {% for author in book.authors %}
<li> <a href ="authors/{{ author.id }}">{{ author.author_name }}</a></li>
<li><a href="{{url_for('show_author_by_id', id=author.id)}}">{{ author.author_name }}</a> </li>
{% endfor %}</td>
<td>{{ book.fileformat }}</td>

14
app/views.py

@ -65,6 +65,7 @@ def show_book_by_id(id):
else:
return render_template('show_book_detail.html', book=book)
@app.route('/books/<int:id>/delete', methods=['POST', 'GET'])
def remove_book_by_id(id):
book_to_edit = Book.query.filter_by(id=id).first()
@ -162,14 +163,25 @@ def flash_errors(form):
error
))
#Authors
@app.route('/authors/<int:id>')
def show_author_by_id(id):
author = Author.query.get(id)
if not author:
abort(404)
abort (404)
else:
return render_template('show_author_detail.html', author=author)
@app.route('/authors/<int:id>/edit', methods=['POST', 'GET'])
def edit_author_by_id(id):
#EDIT AUTHOR TO DO
return None
###
# The API
###

2
run.py

@ -1,3 +1,3 @@
#! /usr/bin/env python
from app import app
app.run(debug=True,host="0.0.0.0",port=8080)
app.run(debug=True,host="0.0.0.0",port=8000)

Loading…
Cancel
Save