Django-easy-pjax not working really
I use from django-easy-pjax . I have this base code: ubase.html <script type="text/javascript" src="{% static "/static/js/jquery-1.9.1.min.js" %}"></script> <script src="{% static "/static/js/jquery.pjax.js" %}"></script> {% block side%} It is {% now "c" %} sdfdsfdsf <a href="/uu/">uu</a> <a href="/uu1/">uu1</a> <br/><br/><br/><br/><br/><br/> {%endblock side%} {%block main%} sdfdfsdfdsfdsfdfdsf {%endblock main%} entry_index.html {% extends "ubase.html"|pjax:request %} {%block main%} 1 {%endblock main%} entry_index2.html {% extends "ubase.html"|pjax:request %} {%block main%} 2 {%endblock main%}