diff options
Diffstat (limited to 'weblog/templates')
-rwxr-xr-x | weblog/templates/weblog/index.html | 4 |
1 files changed, 4 insertions, 0 deletions
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 %}";
|