From c8c9ccd92abad7f903e2bc462830e6f046880ae5 Mon Sep 17 00:00:00 2001 From: Brian Wood <legion.the.unforgiven@gmail.com> Date: Mon, 21 Apr 2014 22:34:38 -0600 Subject: [PATCH] Reminder modal added to the movie page as well --- project/templates/library/libraryItem.html | 1 + 1 file changed, 1 insertion(+) diff --git a/project/templates/library/libraryItem.html b/project/templates/library/libraryItem.html index cfb8e9b..0e58385 100644 --- a/project/templates/library/libraryItem.html +++ b/project/templates/library/libraryItem.html @@ -13,6 +13,7 @@ Loaned to: {{ loan.borrower_email }}<br/> Due back: {{ loan.expected_return_date.strftime('%m-%d-%Y') }} <button type="button" class="btn btn-default btn-small return-movie" data-toggle="modal" data-target="#return-form" data-id='{{ item.id }}'>Return</button> + <button type="button" class="btn btn-default btn-small reminder" data-toggle="modal" data-target="#reminder-form" data-id='{{ item.id }}'>Reminder</button> {% endif %} {% if library.name != "Master" or loan == None %} <button type="button" class="btn btn-default btn-small remove-movie" data-id='{{ index }}'>Remove</button> -- GitLab