Hi

I use djangoflash http://djangoflash.destaquenet.com/
and after add message to flash
            request.flash.add('message', 'test')
and redirect
i receive
['test']
instead
test

code which display this:

{% if flash %}
    {% for key, value in flash.items %}
        <div class="message">
            <p>{{ value }}</p>
        </div>
    {% endfor %}
{% endif %}

Does someone know how strip [' and '] in template?

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to