-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathviews.py
142 lines (119 loc) · 5.29 KB
/
views.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
import traceback
import sys
from django import forms
from django.forms import ModelForm
from django.http import HttpResponse
from django.http import HttpResponseRedirect
from django.template import RequestContext
from django.template import loader, Context
from django.shortcuts import render_to_response
from django.shortcuts import render_to_response
from django.contrib.auth.forms import UserCreationForm
from django.contrib import auth
from courses.models import UserProfile
class UserProfileForm(ModelForm):
class Meta:
model = UserProfile
fields = ('full_name', 'email', 'website', 'timezone', 'bio')
def register(request):
if request.method == 'POST':
try:
user_form = UserCreationForm(request.POST)
user_profile_form = UserProfileForm(request.POST)
if user_form.is_valid() and user_profile_form.is_valid():
user = user_form.save()
user_profile = UserProfile()
user_profile.full_name = request.POST['full_name']
user_profile.email = request.POST['email']
user_profile.website = request.POST['website']
user_profile.email = request.POST['timezone']
user_profile.email = request.POST['bio']
user_profile.user = user
user_profile.save()
#user_profile_tmp = user.get_profile()
#user_profile = user_profile_form.save(commit=False)
#user_profile.user = user_profile_tmp.user
#user_profile.save()
return HttpResponseRedirect("/")
else:
return render_to_response("registration/register.html", {'user_form': user_form, 'user_profile_form':user_profile_form})
except Exception, e:
logging.error("could not save UserProfile: " + e)
return render_to_response("registration/register.html")
else:
user_form = UserCreationForm()
user_profile_form = UserProfileForm()
return render_to_response("registration/register.html", {'user_form': user_form, 'user_profile_form':user_profile_form})
def about(request):
return render_to_response("about.html", context_instance=RequestContext(request))
def terms_of_service(request):
return render_to_response("terms_of_service.html", context_instance=RequestContext(request))
def privacy_policy(request):
return render_to_response("privacy_policy.html", context_instance=RequestContext(request))
def style(request, file_name):
from themes.skyish import theme
body = {'color':theme['body_fg'],
'background':theme['body_bg'],
'font_family':'''Arial,helvetica,sans-serif'''}
header = {'background':theme['header_bg'] + ' none repeat scroll 0 0',
'border_bottom':'1px solid ' + theme['header_bottom_border'],
'nav_main__background_color':theme['nav_main_bg'],
'nav_main__color':theme['nav_main_fg'],
'nav_main__border_top':'1px solid ' + theme['nav_main_border_top'],
'nav_main__font_family':""""Helvetica Neue",Helvetica,Arial,sans-serif""",
'nav_main__a_visited_color':theme['nav_main_a_visited'],
'nav_main__a_link_color':theme['nav_main_a_link'],
'nav_main__a_hover_color':theme['nav_main_a_hover']}
h2 = {'color':theme['h2_color'],
'font_size':'1.3em',
'main_width':'70%',}
content = {'width':'1024px',
'main__width':'70%',
'course_listing_heading__background_color':theme['course_listing_heading__background_color'],
'sidebar__width':'27%',
'sidebar__min_height':'750px',
'sidebar__background_color':theme['sidebar_background_color'],
'sidebar__a_hover_color':theme['sidebar_a_hover']}
footer = {'color':theme['footer_fg'],
'background_color':theme['footer_bg'],
'width':'1024px',
'a_link__color':theme['footer_a_link'],
'a_link__font_size':'11px',
'a_visited__color':theme['footer_a_visited'],
'a_visited__font_size':'11px',
'a_hover__color':theme['footer_a_hover'],
'a_hover__font_size':'11px'}
#TODO: Remove
course_details = {'border_bottom':'1px dotted ' + theme['course_details_bottom_border']}
course_listing = {'a_link__color':theme['course_listing_a_link'],
'a_visited__color':theme['course_listing_a_visited'],
'a_hover__color':theme['course_listing_a_hover']}
course_name = {'color':theme['course_name']}
topic_name = {'color':theme['topic_name']}
course_description = {'a_visited__color':theme['course_description_a_visited'],
'a_link__color':theme['course_description_a_link'],
'a_hover__color':theme['course_description_a_hover']}
course_topics = {'a_link__color':theme['course_topics_a_link'],
'a_visited__color':theme['course_topics_a_visited'],
'a_hover__color':theme['course_topics_a_hover']}
link_theme_b = {'a_link__color':theme['link_theme_b_a_link'],
'a_visited__color':theme['link_theme_b_a_link'],
'a_hover__color':theme['link_theme_b_a_link']}
a = {'link_color':theme['a_link'],
'visited_color':theme['a_visited']}
template = loader.get_template('style-django.tml')
context = Context({'body':body,
'header':header,
'content':content,
'h2':h2,
'footer':footer,
'course_details':course_details,
'course_listing':course_listing,
'course_name':course_name,
'topic_name':topic_name,
'course_description':course_description,
'course_topics':course_topics,
'link_theme_b':link_theme_b,
'a':a})
css = template.render(context)
return HttpResponse(css, mimetype="text/css")