Skip to content
Snippets Groups Projects
Commit a7491516 authored by David Ormsbee's avatar David Ormsbee
Browse files

Merge pull request #234 from MITx/mm-month-names

Add month names
parents bb0ae695 be450e68
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,7 @@
<%! from django_countries.countries import COUNTRIES %>
<%! from student.models import UserProfile %>
<%! from datetime import date %>
<%! import calendar %>
<section id="signup-modal" class="modal signup-modal">
<div class="inner-wrapper">
......@@ -60,7 +61,7 @@
<select name='date_of_birth__month'>
<option value="">month</option>
%for month in range(1,13):
<option value="${month}">${month}</option>
<option value="${month}">${month} - ${calendar.month_name[month]}</option>
%endfor
</select>
......
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