Broken library in Django 1.6 - urls reverse / NoReverseMatch even when templates corrected

583 views Asked by At

Using django-pendulum and trying to get it to work w/the latest Django 1.6. Using a sample blank project, it seems to break trying to reverse urls. I even escaped the {url..} syntax in the templates but no luck. Any ideas on how this can be fixed to work w/1.6? It worked in 1.5!

EDIT - here is the error:

NoReverseMatch at /pendulum/
Reverse for 'pendulum-clock-in' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: []
Request Method: GET
Request URL:    http://localhost:8000/pendulum/
Django Version: 1.6
Exception Type: NoReverseMatch
Exception Value:    
Reverse for 'pendulum-clock-in' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: []

and

Error during template rendering

In template C:\Python27\lib\site-packages\django_pendulum-0.1.6_pre4-py2.7.egg\pendulum\templates\pendulum\pendulum_base.html, error at line 8
Reverse for 'pendulum-clock-in' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: []
1   {% extends 'base.html' %}
2   
3   {% block content %}
4   {% block pendulum-controls %}
5   <div id="pendulum-controls">
6       <ul class="pendulum-controls">
7   {#        <li><strong>{{ emp }}</strong></li>#}
8           <li><a href="{% url 'pendulum-clock-in' %}">Clock In</a></li>
0

There are 0 answers