Здравствуйте!После перехода на релиз 1.5 вылезла ошибка на строке<a href=“{% url auto.views.viewpost post.slug %}”><h3>{{post.title}}</h3></a>В доке сказано:One deprecated feature worth noting is the shift to “new-style” url tag. Prior to Django 1.3, syntax like {% url myview %} was interpreted incorrectly (Django considered “myview” to be a literal name of a view, not a template variable named myview). Django 1.3 and above introduced the {% load url from future %} syntax to bring in the corrected behavior where myview was seen as a variable.The upshot of this is that if you are not using {% load url from future %} in your templates, you’ll need to change tags like {% url myview %} to {% url “myview” %}. If you were using {% load url from future %} you can simply remove that line under Django 1.5Вариант <a href=“{% url ‘auto.views.view_post’ post.slug %}”><h3>{{post.title}}</h3></a> выдает Reverse for ‘auto.views.view_post’ with arguments ‘(’',)' and keyword arguments ‘{}’ not found.Что еще ему надо?Спасибо!