| #!/usr/bin/env python2.5 |
| # |
| # Copyright 2011 the Melange authors. |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| """This module contains the view for the site menus.""" |
| |
| |
| from soc.models.site import Site |
| |
| from soc.views.template import Template |
| |
| |
| class LoggedInMsg(Template): |
| """Template to render user login message at the top of the profile form. |
| """ |
| def __init__(self, data, apply_role=False, apply_link=True, div_name=None): |
| if not div_name: |
| div_name = 'loggedin-message' |
| self.data = data |
| self.apply_link = apply_link |
| self.apply_role = apply_role |
| self.div_name = div_name |
| |
| def context(self): |
| context = { |
| 'logout_link': self.data.redirect.logout().url(), |
| 'has_profile': bool(self.data.profile), |
| 'div_name': self.div_name, |
| } |
| |
| if self.apply_role and self.data.kwargs.get('role'): |
| context['role'] = self.data.kwargs['role'] |
| |
| if self.data.gae_user: |
| context['user_email'] = self.data.gae_user.email() |
| |
| if self.data.user: |
| context['link_id'] = " [link_id: %s]" % self.data.user.link_id |
| |
| if self.apply_link and self.data.timeline.studentSignup() and \ |
| self.data.student_info: |
| context['apply_link'] = self.data.redirect.acceptedOrgs().url() |
| |
| return context |
| |
| |
| class ProgramSelect(Template): |
| """Program select template. |
| """ |
| |
| def __init__(self, data, url_name): |
| self.data = data |
| self.url_name = url_name |
| |
| def context(self): |
| def url(program): |
| r = self.data.redirect.program(program) |
| return r.urlOf(self.url_name) |
| def attr(program): |
| if program.key() == self.data.program.key(): |
| return "selected=selected" |
| return "" |
| |
| program_key = Site.active_program.get_value_for_datastore(self.data.site) |
| |
| programs = [] |
| for p in self.data.programs: |
| if p.status == 'invisible': |
| continue |
| |
| name = p.short_name |
| if p.key() == program_key: |
| name += ' (current)' |
| programs.append((name, url(p), attr(p))) |
| |
| return { |
| 'programs': programs, |
| 'render': len(programs) > 1, |
| } |
| |
| def templatePath(self): |
| return "v2/soc/_program_select.html" |