Skip to content

Commit e7193c5

Browse files
committed
Add format to start and end time
1 parent e6f78ea commit e7193c5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/views/coach_applications/new.html.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
<%= l @event.installation_get_together_end_time, format: :short %></p>
1515
<p>Workshop day:
1616
<%= l @event.scheduled_at, format: :long %>,
17-
<%= @event.start_time %> -
18-
<%= @event.end_time %></p>
17+
<%= l @event.start_time, format: :short %> -
18+
<%= l @event.end_time, format: :short %></p>
1919
</div>
2020
<div>
2121
<p><b>Where for all events:</b></p>

db/schema.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
t.integer "state", default: 0, null: false
5353
t.boolean "lightningtalk_approved", default: false
5454
t.datetime "contacted_at"
55-
t.boolean "first_time_coaching"
55+
t.boolean "first_time_coaching", default: false
5656
t.boolean "coach_the_coaches", default: false
5757
t.string "sponsor"
5858
t.index ["coach_id"], name: "index_coach_applications_on_coach_id"

0 commit comments

Comments
 (0)