Skip to content
Snippets Groups Projects
Commit d4c75b48 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

fixed urls and file locations

parent f44cf658
No related branches found
No related tags found
No related merge requests found
Showing
with 8 additions and 536 deletions
......@@ -31,7 +31,7 @@ def show_list(request):
return list_detail.object_list(request, queryset=queryset, template_object_name='show')
def recommendations(request, template_name='program/recommendations.html'):
def recommendations(request, template_name='recommendations.html'):
now = datetime.now()
end = now + timedelta(weeks=1)
......@@ -74,7 +74,7 @@ def day_schedule(request, year=None, month=None, day=None):
else:
extra_context['timeslots'] = timeslots
return simple.direct_to_template(request, extra_context=extra_context, template='program/day_schedule.html')
return simple.direct_to_template(request, extra_context=extra_context, template='day_schedule.html')
def current_show(request):
current = TimeSlot.objects.get_or_create_current()
......@@ -87,7 +87,7 @@ def current_show(request):
next=next,
after_next=after_next)
return simple.direct_to_template(request, template='program/boxes/current.html', extra_context=extra_context)
return simple.direct_to_template(request, template='boxes/current.html', extra_context=extra_context)
def week_schedule(request, year=None, week=None):
if year is None and week is None:
......@@ -120,7 +120,7 @@ def week_schedule(request, year=None, week=None):
extra_context['next_w3'] = datetime.strftime(monday+timedelta(days=21), '%G/%V')
extra_context['next_w4'] = datetime.strftime(monday+timedelta(days=28), '%G/%V')
return simple.direct_to_template(request, template='program/week_schedule.html', extra_context=extra_context)
return simple.direct_to_template(request, template='week_schedule.html', extra_context=extra_context)
def styles(request):
extra_context = dict()
......@@ -128,7 +128,7 @@ def styles(request):
extra_context['musicfocus'] = MusicFocus.objects.all()
extra_context['showinformation'] = ShowInformation.objects.all()
extra_context['showtopic'] = ShowTopic.objects.all()
return simple.direct_to_template(request, template='program/styles.css', mimetype='text/css', extra_context=extra_context)
return simple.direct_to_template(request, template='styles.css', mimetype='text/css', extra_context=extra_context)
def json_day_schedule(request, year=None, month=None, day=None):
if year is None and month is None and day is None:
......@@ -153,4 +153,4 @@ def tofirstdayinisoweek(year, week):
ret = datetime.strptime('%04d-%02d-1' % (year, week), '%Y-%W-%w')
if date(year, 1, 4).isoweekday() > 4:
ret -= timedelta(days=7)
return ret
\ No newline at end of file
return ret
......@@ -35,7 +35,7 @@ LOCALE_PATHS = os.path.join(PROJECT_DIR, 'locale')
MEDIA_ROOT = os.path.join(PROJECT_DIR, 'site_media')
MEDIA_URL = '/site_media/'
STATIC_URL = '/django_static/'
STATIC_URL = '/static/'
SECRET_KEY = ''
......@@ -72,6 +72,7 @@ INSTALLED_APPS = (
'tinymce',
)
TINYMCE_JS_URL = '/static/js/tiny_mce/tiny_mce.js'
TINYMCE_DEFAULT_CONFIG = {
'plugins' : 'contextmenu',
'theme': 'advanced',
......
This diff is collapsed.
pv/site_media/js/jqueryui-custom-1.8.14/images/ui-icons_222222_256x240.png

4.27 KiB

pv/site_media/js/jqueryui-custom-1.8.14/images/ui-icons_228ef1_256x240.png

4.27 KiB

pv/site_media/js/jqueryui-custom-1.8.14/images/ui-icons_ef8c08_256x240.png

4.27 KiB

pv/site_media/js/jqueryui-custom-1.8.14/images/ui-icons_ffd27a_256x240.png

4.27 KiB

pv/site_media/js/jqueryui-custom-1.8.14/images/ui-icons_ffffff_256x240.png

4.27 KiB

This diff is collapsed.
This diff is collapsed.
/* German initialisation for the jQuery UI date picker plugin. */
/* Written by Milian Wolff (mail@milianw.de). */
jQuery(function($){
$.datepicker.regional['de'] = {
closeText: 'schließen',
prevText: '<zurück',
nextText: 'Vor>',
currentText: 'heute',
monthNames: ['Januar','Februar','März','April','Mai','Juni',
'Juli','August','September','Oktober','November','Dezember'],
monthNamesShort: ['Jan','Feb','Mär','Apr','Mai','Jun',
'Jul','Aug','Sep','Okt','Nov','Dez'],
dayNames: ['Sonntag','Montag','Dienstag','Mittwoch','Donnerstag','Freitag','Samstag'],
dayNamesShort: ['So','Mo','Di','Mi','Do','Fr','Sa'],
dayNamesMin: ['So','Mo','Di','Mi','Do','Fr','Sa'],
weekHeader: 'Wo',
dateFormat: 'dd.mm.yy',
firstDay: 1,
isRTL: false,
showMonthAfterYear: false,
yearSuffix: ''};
$.datepicker.setDefaults($.datepicker.regional['de']);
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment