annotate gpp/templates/downloads/commands/wget_cat.html @ 564:e5d3552d4ad0

The ajax login didn't work from the register page. I think this is because there are two input boxes with the same ID in this situation. Renamed the ajax login form's ID's to make them unique.
author Brian Neal <bgneal@gmail.com>
date Mon, 13 Feb 2012 19:34:29 -0600
parents 311c926dd218
children
rev   line source
bgneal@527 1 #!/bin/bash
bgneal@527 2
bgneal@527 3 {% for dl in downloads %}
bgneal@528 4 wget -O {{ dl.dest_filename }} http://{{ domain }}{{ MEDIA_URL }}{{ dl.file.name|urlencode }}
bgneal@527 5 {% endfor %}