163 lines
8.3 KiB
Text
163 lines
8.3 KiB
Text
.row
|
|
.col-md-12
|
|
.page-header
|
|
%h1 Sponsors
|
|
%p.text-muted
|
|
People supporting your conference
|
|
.row
|
|
.col-md-12
|
|
%div{ role: 'tabpanel' }
|
|
%ul.nav.nav-tabs
|
|
%li.active
|
|
%a{ 'data-toggle' => 'tab', href: '#sponsorship', role: 'tab' } Sponsorship
|
|
%li
|
|
%a{ 'data-toggle' => 'tab', href: '#swags', role: 'tab' } Swags
|
|
%li
|
|
%a{'data-toggle' => 'tab', href: '#unconfirmed', role: 'tab' } Unconfirmed
|
|
|
|
.tab-content
|
|
#sponsorship.tab-pane.active
|
|
- if @conference.sponsors.confirmed.any?
|
|
.row
|
|
.col-md-12
|
|
%table.table.table-hover
|
|
%thead
|
|
%th Logo
|
|
%th Name
|
|
%th Donation
|
|
%th Payment
|
|
%th Level
|
|
%th Actions
|
|
%tbody
|
|
- @conference.sponsors.confirmed.each do |sponsor|
|
|
%tr
|
|
%td
|
|
= image_tag(sponsor.picture.thumb.url, width: '20%')
|
|
%td
|
|
= link_to sponsor.name, admin_conference_sponsor_path(@conference.short_title, sponsor)
|
|
%td
|
|
= sponsor.amount
|
|
%td
|
|
- if sponsor.payed
|
|
%span.fa.fa-check.text-success
|
|
- else
|
|
%span.fa.fa-times.text-danger
|
|
%td
|
|
= sponsor.sponsorship_level.title
|
|
%td
|
|
.btn-group
|
|
= link_to 'Edit', edit_admin_conference_sponsor_path(@conference.short_title, sponsor),
|
|
method: :get, class: 'btn btn-mini btn-primary'
|
|
= link_to 'Delete', admin_conference_sponsor_path(@conference.short_title, sponsor),
|
|
method: :delete, class: 'btn btn-mini btn-danger', data: { confirm: "Do you really want to delete the sponsor #{sponsor.name}?" }
|
|
- if sponsor.transition_possible? :confirm
|
|
= link_to 'Confirm', confirm_admin_conference_sponsor_path(@conference.short_title, sponsor.id),
|
|
method: :patch, class: 'btn btn-mini btn-success'
|
|
- if sponsor.transition_possible? :cancel
|
|
= link_to 'Cancel', cancel_admin_conference_sponsor_path(@conference.short_title, sponsor.id),
|
|
method: :patch, class: 'btn btn-mini btn-warning'
|
|
- else
|
|
%p No confirmed sponsors yet!
|
|
#swags.tab-pane
|
|
- if @conference.sponsors.confirmed.any?
|
|
.row
|
|
.col-md-12
|
|
%table.table.table-hover
|
|
%thead
|
|
%th Logo
|
|
%th Name
|
|
%th Banner
|
|
%th Swags
|
|
%th Swag Items
|
|
%th Received
|
|
%th Actions
|
|
%tbody
|
|
- @conference.sponsors.confirmed.each do |sponsor|
|
|
%tr
|
|
%td
|
|
- if sponsor.picture?
|
|
= image_tag(sponsor.picture.thumb.url, width: '20%')
|
|
%td
|
|
= link_to sponsor.name, admin_conference_sponsor_path(@conference.short_title, sponsor)
|
|
%td
|
|
- if sponsor.has_banner
|
|
%span.fa.fa-check.text-success
|
|
- else
|
|
%span.fa.fa-times.text-danger
|
|
%td
|
|
- if sponsor.has_swag
|
|
%span.fa.fa-check.text-success
|
|
- else
|
|
%span.fa.fa-times.text-danger
|
|
%td
|
|
- if sponsor.has_swag
|
|
- sponsor.swag.each do |key, value|
|
|
= value[:type]
|
|
(
|
|
= value[:quantity]
|
|
)
|
|
%br
|
|
|
|
%td
|
|
= check_box_tag @conference.short_title, sponsor.id, sponsor.swag_received,
|
|
method: :patch, url: "/admin/conferences/#{@conference.short_title}/sponsors/#{sponsor.id}?sponsor[swag_received]=",
|
|
class: 'switch-checkbox', data: { size: 'small',
|
|
off_color: 'warning',
|
|
on_text: 'Yes',
|
|
off_text: 'No' }
|
|
%td
|
|
.btn-group
|
|
= link_to 'Edit', edit_admin_conference_sponsor_path(@conference.short_title, sponsor),
|
|
method: :get, class: 'btn btn-mini btn-primary'
|
|
= link_to 'Delete', admin_conference_sponsor_path(@conference.short_title, sponsor),
|
|
method: :delete, class: 'btn btn-mini btn-danger', data: { confirm: "Do you really want to delete the sponsor #{sponsor.name}?" }
|
|
- if sponsor.transition_possible? :confirm
|
|
= link_to 'Confirm', confirm_admin_conference_sponsor_path(@conference.short_title, sponsor.id),
|
|
method: :patch, class: 'btn btn-mini btn-success'
|
|
- if sponsor.transition_possible? :cancel
|
|
= link_to 'Cancel', cancel_admin_conference_sponsor_path(@conference.short_title, sponsor.id),
|
|
method: :patch, class: 'btn btn-mini btn-warning'
|
|
- else
|
|
%p No confirmed sponsors yet!
|
|
#unconfirmed.tab-pane
|
|
- if @conference.sponsors.unconfirmed.any?
|
|
.row
|
|
.col-md-12
|
|
%table.table.table-hover#sponsors
|
|
%thead
|
|
%th Logo
|
|
%th Name
|
|
%th Description
|
|
%th URL
|
|
%th Level
|
|
%th Actions
|
|
%tbody
|
|
- @conference.sponsors.unconfirmed.each do |sponsor|
|
|
%tr
|
|
%td
|
|
= image_tag(sponsor.picture.thumb.url, width: '20%')
|
|
%td
|
|
= link_to sponsor.name, admin_conference_sponsor_path(@conference.short_title, sponsor)
|
|
%td
|
|
= truncate(sponsor.description)
|
|
%td
|
|
= link_to sponsor.website_url, sponsor.website_url
|
|
%td
|
|
= sponsor.sponsorship_level.title
|
|
%td
|
|
.btn-group
|
|
= link_to 'Edit', edit_admin_conference_sponsor_path(@conference.short_title, sponsor),
|
|
method: :get, class: 'btn btn-mini btn-primary'
|
|
= link_to 'Delete', admin_conference_sponsor_path(@conference.short_title, sponsor),
|
|
method: :delete, class: 'btn btn-mini btn-danger', data: { confirm: "Do you really want to delete the sponsor #{sponsor.name}?" }
|
|
- if sponsor.transition_possible? :confirm
|
|
= link_to 'Confirm', confirm_admin_conference_sponsor_path(@conference.short_title, sponsor.id),
|
|
method: :patch, class: 'btn btn-mini btn-success'
|
|
- if sponsor.transition_possible? :cancel
|
|
= link_to 'Cancel', cancel_admin_conference_sponsor_path(@conference.short_title, sponsor.id),
|
|
method: :patch, class: 'btn btn-mini btn-warning'
|
|
- else
|
|
%p There are no unconfirmed sponsors
|
|
.row
|
|
.col-md-12
|
|
= link_to 'Add Sponsor', new_admin_conference_sponsor_path(@conference.short_title), class: 'btn btn-primary pull-right'
|