diff options
author | Yaroslav de la Peña <contact@yaroslavps.com> | 2018-10-09 11:35:10 +0300 |
---|---|---|
committer | Yaroslav de la Peña <contact@yaroslavps.com> | 2018-10-09 11:35:10 +0300 |
commit | 0761fdd7cb8fa022b717f20fb121a734494644c9 (patch) | |
tree | a48ddcea215d3788e2ff32993b661263c2c50671 | |
parent | 59b9260b28d330f89cb493a7c0ebfbf177be9e8c (diff) | |
download | w3blog-0761fdd7cb8fa022b717f20fb121a734494644c9.tar.gz w3blog-0761fdd7cb8fa022b717f20fb121a734494644c9.zip |
fix dynamic loading for uncategorized posts
-rwxr-xr-x | setup.py | 2 | ||||
-rwxr-xr-x | weblog/templates/weblog/index.html | 4 |
2 files changed, 5 insertions, 1 deletions
@@ -10,7 +10,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir))) setup( name='w3blog', - version='0.5-nobs.6', + version='0.5-testing.0', packages=find_packages(), include_package_data=True, license='BSD License', diff --git a/weblog/templates/weblog/index.html b/weblog/templates/weblog/index.html index 2fab730..4808ec2 100755 --- a/weblog/templates/weblog/index.html +++ b/weblog/templates/weblog/index.html @@ -132,7 +132,11 @@ if (current_page != last_page){
current_page++;
{% if category %}
+ {% if category == 'misc' %}
+ var url = "{% url 'weblog:GetCategoryPosts' category_slug=category nxtpage=current_page %}";
+ {% else %}
var url = "{% url 'weblog:GetCategoryPosts' category_slug=category.slug nxtpage=current_page %}";
+ {% endif %}
{% elif year %}
{% if month_num %}
var url = "{% url 'weblog:GetArchivePosts' year=year month=month_num nxtpage=current_page %}";
|