diff options
Diffstat (limited to 'tbc/templates')
-rw-r--r-- | tbc/templates/tbc/books.html | 11 | ||||
-rw-r--r-- | tbc/templates/tbc/profile.html | 1 |
2 files changed, 10 insertions, 2 deletions
diff --git a/tbc/templates/tbc/books.html b/tbc/templates/tbc/books.html index b1d975f..80070f1 100644 --- a/tbc/templates/tbc/books.html +++ b/tbc/templates/tbc/books.html @@ -5,8 +5,17 @@ <div class="row-fluid"> <div class="span6"> <u> Books without start and end time </u> + <br \> + <u> Books without any log available </u> <ol> - {% for book in books_incomplete %} + {% for book in manual %} + <li><a href="{% url 'tbc:edit_book' book.id %}"> {{ book.title }} </a> </li> + {% endfor %} + </ol> + <br \> + <u> Books with log available, so can be automated </u> + <ol> + {% for book in auto %} <li><a href="{% url 'tbc:edit_book' book.id %}"> {{ book.title }} </a> </li> {% endfor %} </ol> diff --git a/tbc/templates/tbc/profile.html b/tbc/templates/tbc/profile.html index e6f706a..1485849 100644 --- a/tbc/templates/tbc/profile.html +++ b/tbc/templates/tbc/profile.html @@ -15,7 +15,6 @@ <form action="/profile/" method=POST> {% csrf_token %} {{ form.as_p }} - {{ form.errors }} <br> <input class="btn btn-primary" type=submit value=submit> </form> |