From efb623af0bcb47d510501c282e1326b11343a29c Mon Sep 17 00:00:00 2001 From: luxagraf Date: Sat, 22 Sep 2012 22:27:04 -0400 Subject: site reorg --- app/cron/create_country_sidebar.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 app/cron/create_country_sidebar.py (limited to 'app/cron/create_country_sidebar.py') diff --git a/app/cron/create_country_sidebar.py b/app/cron/create_country_sidebar.py new file mode 100644 index 0000000..f660c73 --- /dev/null +++ b/app/cron/create_country_sidebar.py @@ -0,0 +1,19 @@ +import sys, os + +sys.path.append('/home/luxagraf/webapps/django1_1') +sys.path.append('/home/luxagraf/webapps/django1_1/luxagraf') +sys.path.append('/home/luxagraf/webapps/django1_1/luxagraf/apps') +sys.path.append('/home/luxagraf/webapps/django1_1/luxagraf/lib') +sys.path.append('/home/luxagraf/webapps/django1_1/lib/python2.5/') +os.environ['DJANGO_SETTINGS_MODULE'] = 'settings' + +from django.template import Context +from django.template import loader +from django.conf import settings +from locations.models import Country,Region +c = Context({'country_list': Country.objects.filter(visited=True),}) +t = loader.render_to_string('includes/country_sidebar_template.html',c) +fpath = '%s%s' %(settings.PROJ_ROOT,'templates/includes/country_sidebar.html') +file = open(fpath, 'w') +file.write(t) +file.close() \ No newline at end of file -- cgit v1.2.3-70-g09d2