I used PJAX to dynamically change content in a on my website, tried without the django-PJAX first, and just did this:
def test(request):
if request.META.get('HTTP_X_PJAX', False):
return render_to_response('test/test.html')
else: #...
when i hit a button on my website it changes the content to the content inside pjax.html, but when i rightclick and select "view-source" i only get the data inside pjax.html. If i "inspect element" with firebug i can see the whole code. I dont understand why this happens. Is it "ok"?
Cuz then i tried django-PJAX, and there i had to make 2 templates, test.html and test-pjax.html Now if I try the same thing, the data shown in "browse code" is the one in test.html.. It feels like it sends both test.html and test-pjax.html?