view bns_website/videos/views.py @ 98:4de34a1446a0

Fix video page. Was only displaying 2 videos in playlist. YouTube must have changed something? In any event, it is easier to use now. Can just use an <iframe> and give it a list of videos now.
author Brian Neal <bgneal@gmail.com>
date Fri, 13 Jul 2012 21:36:53 -0500
parents a0d3bc630ebd
children
line wrap: on
line source
"""
Views for the videos application.

"""
import random
from django.shortcuts import render
from videos.models import Playlist


def index(request):
    qs = Playlist.objects.all()
    videos = []
    for playlist in qs:
        videos.extend(playlist.video_list.split(','))

    random.shuffle(videos)

    return render(request, 'videos/index.html', {
        'videos': videos,
        })