django-basic-apps
django-basic-apps copied to clipboard
Simple prebuilt applications.
declined was defined twice by instead of accepted and declined
Hi Nathan, STOP_WORDS is compiled twice via re.compile(). Once in tools/constants.py and once in blog/views.py. python2.5 doesn't mind, but python2.6 chokes on this. This commit removes the second re.compile(). This...
This fixes a template syntax error: ``` - {{ tag_list|join", " }} + {{ tag_list|join:", " }} ```
Hiya. I've made a small fix to fix exceptions in the tests for the search view as mentiond in issue #18, https://github.com/nathanborror/django-basic-apps/issues#issue/18 . Thanks for your work on basic apps!...
...other url escapes (such as user uploaded photos) Not sure if this was intentional or not, but in my use, the stored photos could have spaces in them that would...
This templatetag receives as parameter a Post instance (from template), and fills the given context variable ('related_posts' by default) with a queryset of all posts that share tags with it,...
Hi, I modified setup.py to include the template dirs for each app. Before this, installing via pip would not include them since they weren't Python packages. Data files have to...
Added code to basic/profiles/views.py to enable non-existing user profiles to be created when they are requested.
This change fixes a small bug with the basic blog application. Update the blog software so that superusers can preview posts that have a publish date in the future.