Show correct type
This commit is contained in:
parent
6f6098b38d
commit
6e1a6fc3fa
|
@ -44,6 +44,12 @@ class RateableEntity(models.Model):
|
|||
def __str__(self):
|
||||
return self.name
|
||||
|
||||
def getType(self):
|
||||
for (t, t_name) in RateableEntity.TYPE_CHOICES:
|
||||
if t == self.entity_type:
|
||||
return t_name
|
||||
return ''
|
||||
|
||||
# A review represents any single data entry to the database.
|
||||
class Review(models.Model):
|
||||
# An integer rating in the domain [1, 5]
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
<div class="col-lg-12">
|
||||
<div class="ibox float-e-margins ">
|
||||
<div class="ibox-content">
|
||||
<h2>
|
||||
<h2
|
||||
{{ results|length }} results found for: <span class="text-navy test">"{{ search_query }}"</span>
|
||||
</h2>
|
||||
|
||||
|
@ -33,7 +33,7 @@
|
|||
<div class="hr-line-dashed"></div>
|
||||
<div class="search-result">
|
||||
<h3><a href="/rateables/{{ entity.pk }}">{{ entity.name }}</a></h3>
|
||||
<a href="#" class="search-link">UNIVERSITY</a>
|
||||
<a href="#" class="search-link">{{ entity.getType }}</a>
|
||||
<span class="toright glyphicon glyphicon-icon-comments"></span>
|
||||
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue