changes
This commit is contained in:
commit
4fce8cc5c5
@ -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 %}
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
12
app/views.py
12
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,6 +163,8 @@ def flash_errors(form):
|
||||
error
|
||||
))
|
||||
|
||||
#Authors
|
||||
|
||||
@app.route('/authors/<int:id>')
|
||||
def show_author_by_id(id):
|
||||
author = Author.query.get(id)
|
||||
@ -170,6 +173,15 @@ def show_author_by_id(id):
|
||||
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
|
||||
###
|
||||
|
Loading…
Reference in New Issue
Block a user