Skip to content
This repository has been archived by the owner on Mar 15, 2018. It is now read-only.

Commit

Permalink
Add search keywords to reviewer tools (bug 1139525)
Browse files Browse the repository at this point in the history
  • Loading branch information
robhudson committed Mar 5, 2015
1 parent acc1199 commit db6976a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mkt/reviewers/templates/reviewers/includes/details.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ <h2>{{ _('Details') }}</h2>
{% endif %}
<dt>{{ _('Requirements') }}</dt>
<dd>{{ feature_list|join(', ') }}</dd>
<dt>{{ _('Search Keywords') }}</dt>
<dd>{{ product.tags.all()|join(', ') }}</dd>
</dl>

<div class="more-app-info-show"><a href="#more">{{ _('Show more') }}</a></div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,8 @@ <h2>{{ _('Details') }}</h2>
{{ _('View Privacy Policy') }}</a>
</dd>
{% endif %}
<dt>{{ _('Search Keywords') }}</dt>
<dd>{{ product.tags.all()|join(', ') }}</dd>
<dt>{{ _('Team Members') }}</dd>
<dd>
{% for author in product.authors.all() %}
Expand All @@ -136,6 +138,8 @@ <h2>{{ _('Details') }}</h2>
<dt>{{ _('Flags') }}</dt>
<dd>{{ flags|join(', ') }}</dd>
{% endif %}
<dt>{{ _('Region Availability') }}</dt>
<dd>{{ product.get_regions(sort_by='name')|map(attribute='name')|join(', ') }}</dd>
</dl>
</div>
<a href="#" class="showmore">{{ _('more...') }}</a>
Expand Down

0 comments on commit db6976a

Please sign in to comment.