+[% INCLUDE header %]
+[% PROCESS macros %]
+<h1> Quarantined photos </h1>
+
+<p> The following photos need to be tagged. Sorry to be anal about this,
+but we really need to have photos tagged if we're going to be able to
+find them in the future. You won't be able to do anything, anything at
+all, until we've resolved this. Please, please put some tags in the
+boxes below. (You can make it easier for yourself in the future by
+adding IPTC tags to your photos in your photo management software.)
+</p>
+
+<div id="suggestionlist"> </div>
+<form action="[%base%]/photo/quarantine/" method="post">
+<table class="userlist">
+[% WHILE objects.size > 0 %]
+[% SET triple = objects.splice(0,3) %]
+ <tr>
+ [% FOR photo = triple %]
+ <td>
+ [% minithumb(photo, 1) %]
+ <br>
+ <input name="tags[%photo.id%]" id="tags[%photo.id%]">
+ <script type="text/javascript">
+ addHandler(document.getElementById("tags[%photo.id%]")) </script>
+ </td>
+ [% END %]
+ </tr>
+[% END %]
+</table>
+<input type="submit" value="Tag it!">
+</form>
+
+[% INCLUDE pager %]
+[% INCLUDE footer %]