c# .net Adsense ADO.NET Linq Viruses/security asp.net MVC JQuery Angular-js Node-js SEO Java C++ SQL API Networking vb.net .Net Css JavaScript Generics c#.Net entity framework HTML Website host Website Construction Guide HTTP tutorial W3C tutorial Web Services JSON Psychology Ionic framework Angular ReactJS Python Computer Android
Python

TemplateSyntaxError at / Could not parse the remainder: ' + 1' from 'forloop.counter0 + 1'

| | django , python

I created dynamic slider using bootstrap. I want to show number indicator for slider, so I added one to variable in forloop. But I m getting the following error "TemplateSyntaxError at / Could not parse the remainder: ' + 1' from 'forloop.counter0 + 1'". 

TemplateSyntaxError

Custom Filter Example: 

This is just an example for custom filter.

Resolve with custom filter:

In django, we cannot perform arithmetic operations using template tags. To achieve this I created a custom template filter.

Create a folder named "templatetags" in django app and create a empty file named "__init__.py" inside the folder. Then, 

Create a template filter in django app, "Custom_filters.py". 

Copy and pasted below code:


# custom_filters.py

from django import template

register = template.Library()

@register.filter
def add_one(value):
return value + 1


In Html Template, load the custom filter at the top of the template.


{% load custom_filters %}


Use the custom filter to add 1 to the 'forloop.counter'

{% for item in sliders %}

<li data-bs-target="#myCarousel" data-bs-slide-to="{{ forloop.counter0|add_one }}" {% if forloop.first %} class="active" aria-current="true" {% endif %} aria-label="Slide {{ forloop.counter0|add_one }}">{{ forloop.counter0|add_one }}</li>
{% endfor %}

OUTPUT:

Slider number

Video Guide