Switch to side-by-side view

--- a/OSSEval/entity/models.py
+++ b/OSSEval/entity/models.py
@@ -2,8 +2,14 @@
 
 class Entity(models.Model):
     name = models.CharField(max_length=200)
-    search_ui = models.TextField()
+    actual_entity_class = models.CharField(max_length=200) #the class that implements the actual entity instance
+    actual_entity_search_class = models.CharField(max_length=200) 
+    actual_entity_app = models.CharField(max_length=200) #the app where the above classes are
+    
+    def __unicode__(self):
+        return self.name
 
+    
 class SearchConfiguration(models.Model):
     proxy_url = models.CharField(max_length=300)
     proxy_port = models.CharField(max_length=10)