osem-fcy/app/views/conferences/index.html.haml

32 lines
1.1 KiB
Text
Raw Normal View History

2014-11-14 17:24:24 +01:00
.container
.row
.col-md-12
.page-header
%h2 Upcoming Conferences
- @current.each do |conference|
2015-10-06 14:15:38 +03:00
= render partial: 'conference_details', locals: { conference: conference }
2014-11-14 17:24:24 +01:00
-if @antiquated and @antiquated.any?
.row
.col-md-12
%p.text-right
2015-10-06 14:15:38 +03:00
%button{ type: 'button', class: 'btn btn-link btn-sm', 'data-toggle' => 'collapse', 'data-target' => '#antiquated', 'aria-expanded' => 'true', 'aria-controls' => 'antiquated'}
2014-11-14 17:24:24 +01:00
Older conferences
%span.notranslate
= "(#{@antiquated.count})"
2014-11-14 17:24:24 +01:00
%i.fa.fa-chevron-right
2015-10-06 14:15:38 +03:00
%i.fa.fa-chevron-down{ style: 'display: none' }
2014-11-14 17:24:24 +01:00
#antiquated.collapse
- @antiquated.each do |conference|
2015-10-06 14:15:38 +03:00
= render partial: 'conference_details', locals: { conference: conference}
2014-11-14 17:24:24 +01:00
-content_for :script_body do
:javascript
$('#antiquated').on('hidden.bs.collapse', function () {
$( ".fa-chevron-down" ).hide();
$( ".fa-chevron-right" ).show();
})
$('#antiquated').on('shown.bs.collapse', function () {
$( ".fa-chevron-down" ).show();
$( ".fa-chevron-right" ).hide();
})