Hi,
I've installed both gargoyle and nexus on my app and It looks alright, however I'm having issues with gargoyle nexus media url reverse resolution.
With both apps from master on github,
Caught NoReverseMatch while rendering: Reverse for 'media' with arguments '(u'gargoyle', u'css/gargoyle.css')' and keyword arguments '{}' not found.
For the line:
{% url nexus:media 'gargoyle' 'css/gargoyle.css' %} in gargoyle/templates/index.html
Now, if you look at nexus/site.py, the url /media is defined as:
url(r'^media/(?P<module>[^/]+)/(?P<path>.+)$', self.media, name='nexus-media')
inside a namespace called "nexus".
I'm no expert on Django, but I'd assume the url resolution should be of the form "
nexus:nexus-media" , I've changed to that in the gargoyle index.html and it started working.
So, I'm either missing a config something or gargoyle should use "nexus:nexus-media" or nexus should name the view as "media".
Any hint?
Thanks
--
Arkaitz