about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--wqflask/wqflask/templates/display_files.html3
1 files changed, 2 insertions, 1 deletions
diff --git a/wqflask/wqflask/templates/display_files.html b/wqflask/wqflask/templates/display_files.html
index e7210c1b..30974300 100644
--- a/wqflask/wqflask/templates/display_files.html
+++ b/wqflask/wqflask/templates/display_files.html
@@ -7,7 +7,8 @@ Show files for approval
 <div>
     <ul>
         {% for file in files %}
-        <li><a href="/display-file/{{ file }}" target="_blank">{{ file }}</a><br/> <button>Approve</button> <button>Reject</button></li>
+        <li><a href="/display-file/{{ file }}" target="_blank">{{ file }}</a><br/>
+            <button><a href="/data-samples/approve/{{ file }}">Approve</a></button> <button>Reject</button></li>
         {% endfor %}
     </ul>
 </div>