add 'parts' system + script; work on player; create list_item.html template; update on_air

This commit is contained in:
bkfox
2016-06-14 03:33:26 +02:00
parent 5da8762f77
commit 3936580275
12 changed files with 466 additions and 144 deletions

View File

@ -3,9 +3,10 @@ Define different Section css_class that can be used by views.Sections;
"""
import re
from django.templatetags.static import static
from django.template.loader import render_to_string
from django.views.generic.base import View
from django.templatetags.static import static
from django.http import HttpResponse
from django.contrib import messages
from django.utils.html import escape
from django.utils.translation import ugettext as _, ugettext_lazy
@ -75,9 +76,6 @@ class Section(Viewable, View):
* title: title of the section
* header: header of the section
* footer: footer of the section
* force_object: (can be persistent) related object
"""
template_name = 'aircox/cms/website.html'
@ -88,7 +86,6 @@ class Section(Viewable, View):
title = ''
header = ''
footer = ''
force_object = None
request = None
object = None