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

10 lines
198 B
Plaintext
Raw Normal View History

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'