annotate bns_website/videos/views.py @ 79:548b9e61bd64

Updated bands.json to include "asset_prefix" tags for all the bands. Incorporated all the small images from Ferenc into the bands slideshow. Went through and crushed all the large images to fit within 800x600. Make sure to "manage.py loaddata bands.json" after picking this up.
author Chris Ridgway <ckridgway@gmail.com>
date Fri, 25 Nov 2011 16:54:59 -0600
parents a0d3bc630ebd
children
rev   line source
bgneal@60 1 """
bgneal@60 2 Views for the videos application.
bgneal@60 3
bgneal@60 4 """
bgneal@60 5 import random
bgneal@60 6 from django.shortcuts import render
bgneal@60 7 from videos.models import Playlist
bgneal@60 8
bgneal@60 9
bgneal@60 10 def index(request):
bgneal@60 11 qs = Playlist.objects.all()
bgneal@60 12 videos = []
bgneal@60 13 for playlist in qs:
bgneal@60 14 videos.extend(playlist.video_list.split(','))
bgneal@60 15
bgneal@60 16 random.shuffle(videos)
bgneal@60 17
bgneal@60 18 return render(request, 'videos/index.html', {
bgneal@60 19 'videos': videos,
bgneal@60 20 })