diff options
Diffstat (limited to 'app/views/dashboards')
| -rw-r--r-- | app/views/dashboards/_dashboard.html.slim | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/app/views/dashboards/_dashboard.html.slim b/app/views/dashboards/_dashboard.html.slim index 075b94ddc..58cfcc542 100644 --- a/app/views/dashboards/_dashboard.html.slim +++ b/app/views/dashboards/_dashboard.html.slim @@ -22,13 +22,13 @@      .panel.panel-default        .panel-heading          h3.panel-title.with_actions -          = link_to I18n.t("activerecord.models.calendar", count: @dashboard.current_organisation.calendars.size), calendars_path +          = link_to I18n.t("activerecord.models.calendar", count: @dashboard.current_organisation.calendars.size), workgroup_calendars_path(current_workgroup)            div -            = link_to '', calendars_path, class: ' fa fa-chevron-right pull-right' +            = link_to '', workgroup_calendars_path(current_workgroup), class: ' fa fa-chevron-right pull-right'        - if @dashboard.current_organisation.calendars.present?          .list-group            - @dashboard.current_organisation.calendars.order("updated_at desc").limit(5).each do |calendar| -            = link_to calendar.name, calendar_path(calendar), class: 'list-group-item' +            = link_to calendar.name, workgroup_calendars_path(current_workgroup, calendar), class: 'list-group-item'        - else          .panel-body            em.small.text-muted | 
