0
votes
2answers
448 views
Django named urls unrecognized by template url tags
In projects/urls.py I have:
urlpatterns = patterns('bizteen.projects.views',
url(r'^browse/$', 'browse', name='projects-browse-main'),
url(r'^browse/(\d+)/$', 'browse', name …
0
votes
2answers
93 views
Encrypted Django Model Fields
A client wants to ensure that I cannot read sensitive data from their site, which will still be administered by me. In practice, this means that I'll have database access, but it can't be possible …
0
votes
Django named urls unrecognized by template url tags
From my urls.py:
url(r'^profile/$', 'bizteen.userthings.user-profile'),
That view didn't exist. I feel dumb.
…
