annotate gpp/templates/downloads/commands/wget_cat.html @ 580:c525f3e0b5d0

Use the static() function to serve MEDIA files in development.
author Brian Neal <bgneal@gmail.com>
date Sat, 05 May 2012 15:08:07 -0500
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 %}