Serhiy

Results 69 comments of Serhiy

With this code it outputs only `disqus_url`: ``` {% with item|model_name as disqus_prefix %} {% with item.id|stringformat:"s" as item_id %} {% set_disqus_identifier disqus_prefix "_" item_id %} {% endwith %} {%...

It is being set in `set_disqus_identifier()` but it's somehow no longer present in `get_config()`

Found it. In case `{% with %}` is used `{% disqus_show_comments %}` must be placed before the closing `{% endwith %}`.

Yes, it should, but I'm not sure how to phrase it better, I'd like someone else doing it.

My final code: {% with item|model_name as disqus_prefix %} {% with item.id|stringformat:"s" as item_id %} {% set_disqus_identifier disqus_prefix "_" item_id %} {% set_disqus_url request.build_absolute_uri %} {% disqus_show_comments %} {% endwith...

@acidjunk They are both pointing to https://github.com/arthurk/django-disqus/issues/url instead of the actual URLs.

Thank you! Partially it is, but let me disagree on that part that the problem mentioned in issue 12 would have appeared (maybe) only after I've found a way to...

I'm afraid there is a misunderstanding. I haven't found a [proper] way to flush all already loaded items and replace them with page 1 of new results loaded through an...

I'm reading the code currently and looks like solving issue 12 will really make it easier because right now I will also have to take care of replacing href in...

Looks like having `loadedPages` [inside anonymous function](https://github.com/shtalinberg/django-el-pagination/blob/99de42e47f5bf1a021e4b46f4efbb476f8ff2684/el_pagination/static/el-pagination/js/el-pagination.js#L48) will disrupt correct work and at current state there is no way to reset el-pagination on the page. CMIIW. I see two possible...