jfm / django-stockphoto (http://carcosa.net/jason/software/django/stockphoto/)

Stockphoto is a photogallery application written using the Django web application framework. It is designed to integrate into existing dynamic websites built with Django, to be easy to install, and to have few prerequisites, both in terms of third-party modules and in terms of expectations about site layout. It attempts to make maximum use of built-in Django facilities (authentication, admin pages, generic views) as much as possible in order to provide the simplest possible photogallery application while providing a reasonably full set of features.

Clone this repository (size: 85.5 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/jfm/django-stockphoto/
commit 32: cdd9903fed9c
parent 31: 88f31e0c35c7
branch: default
Fixed missing comma ptyo.
jmcbray
2 years ago

Changed (Δ1 byte):

raw changeset »

stockphoto/views.py (1 lines added, 1 lines removed)

Up to file-list stockphoto/views.py:

@@ -150,7 +150,7 @@ def import_photos(request, thegallery):
150
150
        errors = new_data = {}
151
151
    form = forms.FormWrapper(manipulator, new_data, errors)
152
152
    return render_to_response('stockphoto/import_form.html',
153
                              dict(form=form, gallery=gallery)
153
                              dict(form=form, gallery=gallery),
154
154
                              context_instance=RequestContext(request))
155
155
        # request, 
156
156