Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Very odd~

Basically I have a standard "Like!" button:

<div class="fb-like" data-href="myURL/things/{{MyINFO}}/" data-send="false" data-width="450" data-show-faces="true"></div>

Over at views.py I have:

def myView(request):
    #Other things
    ctx = {
            'MyINFO' : MySTRING,
            'Otherstuff'  : Otherstuff
            }
    return render_to_response('myApp/myPage4.html', ctx, RequestContext(request))

When the user "Like"s the page, they should be liking myURL/things/MyString/ but they are getting myURL/things/%7B%7BMyINFO%7D%7D/

Could the facebook stuff be loaded before the template is pre-processed?

share|improve this question

1 Answer

up vote 0 down vote accepted

Woops, the front-end person changed the {{}} to {{}}

That is, {{}} to &#123;&#123;&#125;&#125;

:)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.