merge master

This commit is contained in:
Michael Ball 2021-04-15 21:56:18 -07:00
parent 15e910a323
commit d4ffda5d58
7 changed files with 20 additions and 1 deletions

View file

@ -7,6 +7,7 @@
# id :bigint not null, primary key
# abstract :text
# comments_count :integer default(0), not null
# committee_review :text
# description :text
# guid :string not null
# is_highlight :boolean default(FALSE)

View file

@ -7,6 +7,7 @@
# id :bigint not null, primary key
# abstract :text
# comments_count :integer default(0), not null
# committee_review :text
# description :text
# guid :string not null
# is_highlight :boolean default(FALSE)

View file

@ -2,12 +2,18 @@
.row
.col-xs-6.col-xs-offset-3
%h1
Payment Summary :
Payment Summary :
= humanized_money_with_symbol @total_amount_to_pay
.col-xs-8.col-xs-offset-2.well
= render partial: 'payment'
.row
.col-md-13
%p.text-center
%strong
If you do not have a credit card, please reach out to use at
= mail_to(@conference.contact.email)
%hr
%p.text-muted.text-center
%small
All payments are handled securely by our payment processor,

View file

@ -258,6 +258,7 @@ ActiveRecord::Schema.define(version: 2021_04_01_050437) do
t.integer "program_id"
t.integer "max_attendees"
t.integer "comments_count", default: 0, null: false
t.text "committee_review"
t.text "submission_text"
end
@ -268,6 +269,13 @@ ActiveRecord::Schema.define(version: 2021_04_01_050437) do
t.datetime "created_at"
end
create_table "events_users", id: false, force: :cascade do |t|
t.bigint "event_id"
t.bigint "user_id"
t.index ["event_id"], name: "index_events_users_on_event_id"
t.index ["user_id"], name: "index_events_users_on_user_id"
end
create_table "lodgings", force: :cascade do |t|
t.string "name"
t.text "description"

View file

@ -7,6 +7,7 @@
# id :bigint not null, primary key
# abstract :text
# comments_count :integer default(0), not null
# committee_review :text
# description :text
# guid :string not null
# is_highlight :boolean default(FALSE)

View file

@ -7,6 +7,7 @@
# id :bigint not null, primary key
# abstract :text
# comments_count :integer default(0), not null
# committee_review :text
# description :text
# guid :string not null
# is_highlight :boolean default(FALSE)

View file

@ -7,6 +7,7 @@
# id :bigint not null, primary key
# abstract :text
# comments_count :integer default(0), not null
# committee_review :text
# description :text
# guid :string not null
# is_highlight :boolean default(FALSE)