Skip to content

Commit

Permalink
integrate
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaelnferreira committed Nov 23, 2013
1 parent e9e4dd7 commit 672dd97
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ class DeliverFeeForm(djangoforms.ModelForm):
item = forms.TypedChoiceField(choices=PackageTypes, initial='Envelope [menos de 1kg]')
class Meta:
model = DeliverFee
exclude = ['dest_lng','dest_lat', 'source_lat', 'source_lng','request_user', 'item', 'request_date_time', 'closed', 'state']
exclude = ['dest_lng','dest_lat', 'source_lat', 'source_lng','request_user', 'item', 'request_date_time', 'closed', 'state', 'request_datetime']
1 change: 1 addition & 0 deletions models.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class AppUser(db.Model):
name = db.StringProperty()
phone = db.StringProperty()
photo = db.StringProperty()
request_datetime = db.DateTimeProperty(auto_now=True)

class DeliverFee(db.Model):
source_address = db.StringProperty()
Expand Down

0 comments on commit 672dd97

Please sign in to comment.