Anomalie #532
ferméCRASH / Bug on connecting to ishtar instance test site
0%
Description
Tested with emptied cache. A very ugly CRASH ! :)
TemplateSyntaxError at /test/
Caught NoReverseMatch while rendering: Reverse for 'action' with arguments '('treatment_creation',)' and keyword arguments '{}' not found.
Request Method: GET
Request URL: http://ishtar.proxience.com/test/
Django Version: 1.2.3
Exception Type: TemplateSyntaxError
Exception Value:
Caught NoReverseMatch while rendering: Reverse for 'action' with arguments '('treatment_creation',)' and keyword arguments '{}' not found.
Exception Location: /usr/lib/pymodules/python2.6/django/template/defaulttags.py in render, line 385
Python Executable: /usr/bin/python
Python Version: 2.6.6
Python Path: ['/var/local/ishtar-test/', '/usr/lib/python2.6', '/usr/lib/python2.6/plat-linux2', '/usr/lib/python2.6/lib-tk', '/usr/lib/python2.6/lib-old', '/usr/lib/python2.6/lib-dynload', '/usr/local/lib/python2.6/dist-packages', '/usr/lib/python2.6/dist-packages', '/usr/lib/python2.6/dist-packages/PIL', '/usr/lib/pymodules/python2.6', '/var/local/ishtar-test/ishtar/../xhtml2odt', '/var/local/ishtar-test/ishtar/../xhtml2odt']
Server time: lun, 11 Jul 2011 09:19:41 +0200
Mis à jour par Étienne Loks il y a plus de 13 ans
- Statut changé de Nouveau à Commentaire
Not easily reproducible: please provide more details on the crash (specially the lines including the python source code). It is an issue for testing user due to API evolution: to go through that error (after the full report) force a reconnection (http://ishtar.proxience.com/test/accounts/logout/)
Mis à jour par Yann Le Jeune il y a plus de 13 ans
- Statut changé de Commentaire à Fermé
The force deconnection worked for me ;). Thanks.
More details :
In template /var/local/ishtar-test/ishtar/templates/base.html, error at line 72
Caught NoReverseMatch while rendering: Reverse for 'action' with arguments '('treatment_creation',)' and keyword arguments '{}' not found.
62 {% for section in MENU.childs %}
63 {% if section.available %}{{section.label}}
64
65 {% for menu_item in section.childs %}{%if menu_item.available%}
66 {% if menu_item.childs %}{{menu_item.label}}
67
68 {% for menu_subitem in menu_item.childs %}{%if menu_subitem.available%}
69 {{menu_subitem.label}}
70 {%endif%}{% endfor %}
71 {%else%}
72 {{menu_item.label}}
73 {%endif%}{% endif %}{% endfor %}
74
75 {%endif%}
76 {% endfor %}
77
78
79
80 {% block content %}{% endblock %}
81
82