Sha256: fc0713fdcfe3d05769a357da01337570cc63c97a1bfda46cad1bf175023d52a9

Contents?: true

Size: 671 Bytes

Versions: 6

Compression:

Stored size: 671 Bytes

Contents

= content_for :title do
  = t(:'course.show')

= content_for :show_header do
  = t(:'course.show')

= well_div do
  = table_for('course-table') do
    thead
      tr
        = th t(:'course.code')
        - if @course.syllabus
          = th t(:'course.combined_code')
          = th t(:'syllabus.singular')
    tbody
      tr
        td = @course.code
        - if @course.syllabus
          td = @course.syllabus.code
          td = @course.syllabus.name

= render 'tabs'

= well_div do
  #course-notes
    = render partial: 'gaku/notes/notes'

= well_div do
  .span6
    = link_to_edit_with_text [:edit, @course], remote: true
  .span6
    = link_to_back courses_path

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
gaku_core-0.0.3 app/views/gaku/courses/show.html.slim
gaku-0.0.3 core/app/views/gaku/courses/show.html.slim
gaku-0.0.2 core/app/views/gaku/courses/show.html.slim
gaku_core-0.0.2 app/views/gaku/courses/show.html.slim
gaku-0.0.1 core/app/views/gaku/courses/show.html.slim
gaku_core-0.0.1 app/views/gaku/courses/show.html.slim