--- a
+++ b/OSSEval/IMDBMovieApp/templates/IMDBMovieApp/detail.html
@@ -0,0 +1,34 @@
+<!-- 
+# This Source Code Form of OSSEval is subject to the terms of the GNU AFFERO
+# GENERAL PUBLIC LICENSE, v. 3.0. If a copy of the AGPL was not
+# distributed with this file, You can obtain one at http://www.gnu.org/licenses/agpl.txt
+#
+# OSSeval is powered by the SOS Open Source AGPL edition.
+#  The AGPL requires that you do not remove the SOS Open Source attribution and copyright 
+#  notices from the user interface (see section 5.d below).
+
+# OSSEval Copyright 2014 Bitergium SLL
+# SOS Open Source Copyright 2012 Roberto Galoppini
+# Author: Davide Galletti 
+-->
+
+{% load staticfiles %}
+    <ul>
+{% for i in analysis.instance_set.all %}
+        <li>
+          <a id_instance="{{ i.id }}" href="#{{ i.imdb_movie.imdb_id }}">{{ i.imdb_movie.title }}</a>&nbsp;
+          <a target="_blank" href="http://www.imdb.com/title/{{ i.imdb_movie.imdb_id }}" /><img src="{% static "images/" %}imdb.jpg"></a>
+        </li>
+{% empty %}
+        <li>No movies yet, please add at least one.</li>
+{% endfor %}
+    </ul>
+{% for i in analysis.instance_set.all %}
+    <div id="{{ i.imdb_movie.imdb_id }}">
+    <br>
+     <a href="{% url 'IMDBMovie_delete' i.id analysis.id %}">
+       <img src="{% static "images/delete.jpg" %}" />
+     </a> 
+     {{ i.imdb_movie.title }}<br>{{ i.imdb_movie.description }}
+    </div>
+{% endfor %}