Skip to content
This repository has been archived by the owner on Jan 31, 2019. It is now read-only.

Commit

Permalink
bug 653300, using url() like we should
Browse files Browse the repository at this point in the history
  • Loading branch information
davedash committed Apr 28, 2011
1 parent deee8c2 commit 0354221
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/feedback/templates/feedback/mobile/beta_index.html
Expand Up @@ -10,12 +10,12 @@ <h1>{{ _('Thanks for helping Mozilla make your experience better!') }}</h1>
<p>{{ _('Please choose the type of feedback that you would like to submit to us:') }}</p>

<div class="feedback_index happy">
<a href="happy" title="{{ _('Firefox makes me happy ...') }}"><div
<a href="{{ url('feedback.happy') }}" title="{{ _('Firefox makes me happy ...') }}"><div
class="smiley happy feedback_index">&#9786;</div></a>
<p>{{ _('Firefox makes me happy ...') }}</p>
</div>
<div class="feedback_index sad">
<a href="sad" title="{{ _('Firefox makes me sad ...') }}"><div
<a href="{{ url('feedback.sad') }}" title="{{ _('Firefox makes me sad ...') }}"><div
class="smiley sad feedback_index">&#9786;</div></a>
<p>{{ _('Firefox makes me sad ...') }}</p>
</div>
Expand Down

0 comments on commit 0354221

Please sign in to comment.