Fix tagline only if type is movie

This commit is contained in:
Jonathan Wong 2015-09-06 12:46:46 -07:00
parent 2d7585d64b
commit e44a0fed22

View file

@ -144,7 +144,7 @@ DOCUMENTATION :: END
% endif % endif
</div> </div>
</div> </div>
% if data['tagline']: % if data['type'] == 'movie' and data['tagline']:
<div class="summary-content-summary"> <div class="summary-content-summary">
<p><strong> ${data['tagline']} </strong></p> <p><strong> ${data['tagline']} </strong></p>
</div> </div>