I want to cast an int that's passed to the template through the url, but it says that the str function isn't defined.
How do I get around this?
Here's my code:
{% extends "base.html" %}
{% block content %}
    {% for post in posts %}
    {% set year = post.date.year %}
    {% set month = post.date.month %}
    {% set day = post.date.day %}
    {% set p = str(year) + '/' + str(month) + '/' + str(day) + '/' + post.slug %}
    <h3>
        <a href="{{ url_for('get_post', ID=p) }}">
            {{ post.title }}
        </a>
    </h3>
        <p>{{ post.content }}</p>
    {% else: %}
            There's nothing here, move along.
    {% endfor %}
{% endblock %}