<%= dgettext("ui", "Dashboard") %>
<%= dgettext("ui", "Overview of your blog database") %>
<%= @dashboard.post_stats.total_posts || 0 %>
<%= dgettext("ui", "Total Posts") %>
<%= dgettext("ui", "dashboard.stats.published", count: @dashboard.post_stats.published_count || 0) %>
<%= dgettext("ui", "dashboard.stats.drafts", count: @dashboard.post_stats.draft_count || 0) %>
<%= if (@dashboard.post_stats.archived_count || 0) > 0 do %>
<%= dgettext("ui", "dashboard.stats.archived", count: @dashboard.post_stats.archived_count || 0) %>
<% end %>
<%= @dashboard.media_stats.media_count || 0 %>
<%= dgettext("ui", "Media Files") %>
<%= dgettext("ui", "dashboard.stats.images", count: @dashboard.media_stats.image_count || 0) %>
<%= ShellData.format_bytes(@dashboard.media_stats.total_bytes || 0) %>
<%= length(@dashboard_tag_cloud_items) %>
<%= dgettext("ui", "Tags") %>
<%= dgettext("ui", "dashboard.stats.categories", count: length(@dashboard_category_counts)) %>
<%= dgettext("ui", "Posts Over Time") %>
<%= for entry <- @dashboard_timeline_entries do %>
<% end %>
<%= dgettext("ui", "Tags") %>
<%= for item <- @dashboard_tag_cloud_items do %>
<%= item.tag %>
<% end %>
<%= dgettext("ui", "Categories") %>
<%= for category <- @dashboard_category_counts do %>
<%= category.category || "" %>
<%= category.count || 0 %>
<% end %>
<%= dgettext("ui", "Recently Updated") %>
<%= for post <- @dashboard_recent_posts do %>
<% end %>
<%= BDS.Desktop.ShellLive.TabHelpers.tab_route_label(@current_tab) %>
<%= BDS.Desktop.ShellLive.TabHelpers.tab_title(@current_tab, @tab_meta) %>
<%= BDS.Desktop.ShellLive.TabHelpers.tab_subtitle(@current_tab, @tab_meta) %>
<%= BDS.Desktop.ShellLive.PanelRenderer.render_editor_toolbar(assigns) %><%= BDS.Desktop.ShellLive.TabHelpers.tab_title(@current_tab, @tab_meta) %>
Desktop workbench content routed through the Elixir shell.
<%= for tab <- @panel_tabs do %>
<% end %>
<%= BDS.Desktop.ShellLive.PanelRenderer.render_panel_body(assigns) %>