clarion/app/views/workshops/index.html.slim

12 lines
249 B
Plaintext
Raw Normal View History

2014-09-01 12:57:27 +03:00
- content_for(:title) { ":: #{t :my_workshops}" }
2014-08-31 22:11:46 +03:00
h1.entry-title = t :my_workshops
2014-08-30 19:59:33 +03:00
2014-08-31 18:58:07 +03:00
- unless @workshops.empty?
ul
= render @workshops
- else
2014-08-31 22:11:46 +03:00
p = t :no_workshops_submitted
2014-08-30 19:59:33 +03:00
2014-08-31 22:11:46 +03:00
= link_to t(:submit_workshop), new_workshop_path, class: 'btn-link'