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

11 lines
232 B
Plaintext
Raw Normal View History

2014-09-01 12:57:27 +03:00
- content_for(:title) { ":: #{t :my_talks}" }
2014-08-31 22:11:46 +03:00
h1.entry-title = t :my_talks
2014-08-30 19:45:25 +03:00
2014-08-31 18:58:07 +03:00
- unless @lectures.empty?
ul
= render @lectures
- else
2014-08-31 22:11:46 +03:00
p = t :no_talks_submitted
2014-08-30 19:45:25 +03:00
2014-08-31 22:11:46 +03:00
= link_to t(:submit_lecture), new_lecture_path, class: 'btn-link'