merge master
This commit is contained in:
parent
15e910a323
commit
d4ffda5d58
7 changed files with 20 additions and 1 deletions
|
|
@ -7,6 +7,7 @@
|
||||||
# id :bigint not null, primary key
|
# id :bigint not null, primary key
|
||||||
# abstract :text
|
# abstract :text
|
||||||
# comments_count :integer default(0), not null
|
# comments_count :integer default(0), not null
|
||||||
|
# committee_review :text
|
||||||
# description :text
|
# description :text
|
||||||
# guid :string not null
|
# guid :string not null
|
||||||
# is_highlight :boolean default(FALSE)
|
# is_highlight :boolean default(FALSE)
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@
|
||||||
# id :bigint not null, primary key
|
# id :bigint not null, primary key
|
||||||
# abstract :text
|
# abstract :text
|
||||||
# comments_count :integer default(0), not null
|
# comments_count :integer default(0), not null
|
||||||
|
# committee_review :text
|
||||||
# description :text
|
# description :text
|
||||||
# guid :string not null
|
# guid :string not null
|
||||||
# is_highlight :boolean default(FALSE)
|
# is_highlight :boolean default(FALSE)
|
||||||
|
|
|
||||||
|
|
@ -2,12 +2,18 @@
|
||||||
.row
|
.row
|
||||||
.col-xs-6.col-xs-offset-3
|
.col-xs-6.col-xs-offset-3
|
||||||
%h1
|
%h1
|
||||||
Payment Summary :
|
Payment Summary :
|
||||||
= humanized_money_with_symbol @total_amount_to_pay
|
= humanized_money_with_symbol @total_amount_to_pay
|
||||||
.col-xs-8.col-xs-offset-2.well
|
.col-xs-8.col-xs-offset-2.well
|
||||||
= render partial: 'payment'
|
= render partial: 'payment'
|
||||||
.row
|
.row
|
||||||
.col-md-13
|
.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
|
%p.text-muted.text-center
|
||||||
%small
|
%small
|
||||||
All payments are handled securely by our payment processor,
|
All payments are handled securely by our payment processor,
|
||||||
|
|
|
||||||
|
|
@ -258,6 +258,7 @@ ActiveRecord::Schema.define(version: 2021_04_01_050437) do
|
||||||
t.integer "program_id"
|
t.integer "program_id"
|
||||||
t.integer "max_attendees"
|
t.integer "max_attendees"
|
||||||
t.integer "comments_count", default: 0, null: false
|
t.integer "comments_count", default: 0, null: false
|
||||||
|
t.text "committee_review"
|
||||||
t.text "submission_text"
|
t.text "submission_text"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
@ -268,6 +269,13 @@ ActiveRecord::Schema.define(version: 2021_04_01_050437) do
|
||||||
t.datetime "created_at"
|
t.datetime "created_at"
|
||||||
end
|
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|
|
create_table "lodgings", force: :cascade do |t|
|
||||||
t.string "name"
|
t.string "name"
|
||||||
t.text "description"
|
t.text "description"
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@
|
||||||
# id :bigint not null, primary key
|
# id :bigint not null, primary key
|
||||||
# abstract :text
|
# abstract :text
|
||||||
# comments_count :integer default(0), not null
|
# comments_count :integer default(0), not null
|
||||||
|
# committee_review :text
|
||||||
# description :text
|
# description :text
|
||||||
# guid :string not null
|
# guid :string not null
|
||||||
# is_highlight :boolean default(FALSE)
|
# is_highlight :boolean default(FALSE)
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@
|
||||||
# id :bigint not null, primary key
|
# id :bigint not null, primary key
|
||||||
# abstract :text
|
# abstract :text
|
||||||
# comments_count :integer default(0), not null
|
# comments_count :integer default(0), not null
|
||||||
|
# committee_review :text
|
||||||
# description :text
|
# description :text
|
||||||
# guid :string not null
|
# guid :string not null
|
||||||
# is_highlight :boolean default(FALSE)
|
# is_highlight :boolean default(FALSE)
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@
|
||||||
# id :bigint not null, primary key
|
# id :bigint not null, primary key
|
||||||
# abstract :text
|
# abstract :text
|
||||||
# comments_count :integer default(0), not null
|
# comments_count :integer default(0), not null
|
||||||
|
# committee_review :text
|
||||||
# description :text
|
# description :text
|
||||||
# guid :string not null
|
# guid :string not null
|
||||||
# is_highlight :boolean default(FALSE)
|
# is_highlight :boolean default(FALSE)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue