Skip to content

Commit

Permalink
Merge branch 'master' into permfix
Browse files Browse the repository at this point in the history
  • Loading branch information
jmerdich committed Aug 24, 2015
2 parents d6dc405 + bd20342 commit 6e63ebf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
sudo: false
language: python

cache:
Expand Down
2 changes: 1 addition & 1 deletion meetings/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def __init__(self, *args, **kwargs):
)
super(MeetingAdditionForm, self).__init__(*args, **kwargs)

duration = NaturalDurationField(human_values=True)
duration = NaturalDurationField(human_values=True, required=True)
attendance = AutoCompleteSelectMultipleField('Users', required=False)
datetime = SplitDateTimeField(required=True, initial=datetime.datetime.today())
location = forms.ModelChoiceField(queryset=Location.objects.filter(available_for_meetings=True), label="Location",
Expand Down

0 comments on commit 6e63ebf

Please sign in to comment.