<%! from django.utils.translation import ugettext as _ %>

${title}

% if description_html:
${description_html}
% endif
% for hotspot in hotspots: <% hotspot_reveal_style = 'style="{0}{1}"'.format( 'width: ' + hotspot.feedback.width + 'px;' if hotspot.feedback.width else '', 'height: ' + hotspot.feedback.height + 'px;' if hotspot.feedback.height else '' ) hotspot_style = 'style="position: absolute; top: {0}px; left: {1}px;"'.format(hotspot.y, hotspot.x) %>
% if hotspot.feedback.header: ${hotspot.feedback.header} % endif % if hotspot.feedback.body: ${hotspot.feedback.body} % endif % if hotspot.feedback.youtube:
% endif
% endfor