Sha256: 4937a342f3f219a43076335f6d9437646821619a2a99834e7e1b97dc94195ba5

Contents?: true

Size: 1.26 KB

Versions: 13

Compression:

Stored size: 1.26 KB

Contents

= styles_for :task, :opportunity, :account

.title
  %span#title #{t :my_tasks}
%ul.list#tasks
  - unless @my_tasks.empty?
    = render partial: "home/task", collection: @my_tasks.limit(10)
    = show_hidden_entities_message(@my_tasks.count, 'task', 10)
  - else
    #{t :no_task_records}

.title
  %span#title #{t :my_opportunities}
%ul.list#opportunities
  - unless @my_opportunities.empty?
    = render partial: "home/opportunity", collection: @my_opportunities.limit(10)
    = show_hidden_entities_message(@my_opportunities.count, 'opportunity', 10)
  - else
    #{t :no_opportunity_records}

.title
  %span#title #{t :my_accounts}
%ul.list#accounts
  - unless @my_accounts.empty?
    = render partial: "home/account", collection: @my_accounts.limit(10)
    = show_hidden_entities_message(@my_accounts.count, 'account', 10)
  - else
    #{t :no_account_records}

.title_tools
  = link_to_inline(:options, url_for(action: :options), text: t(:options))

.title
  %span#title #{t :recent_activity}
  = image_tag("loading.gif", size: :thumb, id: "loading", style: "display: none;")
.remote#options{ hidden }

%ul.list#activities
  - unless @activities.empty?
    = render partial: "activity", collection: @activities
  - else
    #{t :no_activity_records}


#export= render "shared/export"

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
fat_free_crm-0.22.1 app/views/home/index.html.haml
fat_free_crm-0.22.0 app/views/home/index.html.haml
fat_free_crm-0.21.0 app/views/home/index.html.haml
fat_free_crm-0.20.1 app/views/home/index.html.haml
fat_free_crm-0.20.0 app/views/home/index.html.haml
fat_free_crm-0.19.2 app/views/home/index.html.haml
fat_free_crm-0.19.0 app/views/home/index.html.haml
fat_free_crm-0.18.2 app/views/home/index.html.haml
fat_free_crm-0.17.3 app/views/home/index.html.haml
fat_free_crm-0.18.1 app/views/home/index.html.haml
fat_free_crm-0.18.0 app/views/home/index.html.haml
fat_free_crm-0.17.2 app/views/home/index.html.haml
fat_free_crm-0.17.1 app/views/home/index.html.haml