Changeset 1f4ee0b
- Timestamp:
- Nov 16, 2012, 5:02:22 AM (13 years ago)
- Branches:
- master, space-access, stable, stage
- Children:
- 6e247d3
- Parents:
- 4d79976
- git-author:
- Alex Dehnert <adehnert@…> (11/16/12 05:02:06)
- git-committer:
- Alex Dehnert <adehnert@…> (11/16/12 05:02:22)
- File:
-
- 1 edited
-
asadb/forms/views.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
asadb/forms/views.py
r4d79976 r1f4ee0b 191 191 request_obj = form.save() 192 192 193 view_path = reverse('fysm-view', args=[year, request_obj.pk, ]) 194 view_uri = '%s://%s%s' % (request.is_secure() and 'https' or 'http', 195 request.get_host(), view_path) 193 view_uri = request.build_absolute_uri(reverse('fysm-view', args=[year, request_obj.pk, ])) 196 194 197 195 # Send email … … 298 296 update_obj = None 299 297 300 confirm_path = reverse('membership-confirm', ) 301 confirm_uri = '%s://%s%s' % (request.is_secure() and 'https' or 'http', 302 request.get_host(), confirm_path) 298 confirm_uri = request.build_absolute_uri(reverse('membership-confirm')) 303 299 304 300 if request.method == 'POST':
Note: See TracChangeset
for help on using the changeset viewer.