%= render :partial => "/platform/developer/common/header" %>
<%=link_to(tr("edit developer information", "Developer preferences link"), :controller => "/platform/developer/dashboard", :action => :info)%>
|
<%=link_to(tr("dashboard preferences", "Dashboard preferences link"), :controller => "/platform/developer/dashboard", :action => :settings)%>
<%=tr("{user}'s Dashboard", "Dashboard section title", :user => [platform_current_developer, :name]) %>
<%=platform_user_mugshot_tag(platform_current_user, :linked => true)%>
|
<%=tr("Registered On:", "Dashboard section header") %> |
<%=platform_current_developer.created_at.trl%> |
<%=tr("Your Total Applications:", "Dashboard section header") %> |
<%=link_to(platform_current_developer.applications.count, :controller => "/platform/developer/apps")%> |
<%=tr("Dashboard Applications:", "Dashboard section header") %> |
<% apps = [] %>
<% @apps.each do |app|
apps << link_to(app.versioned_name, :anchor => "app_#{app.id}")
end %>
<%= raw(apps.join(" | ")) %> (<%=link_to(tr("change", "Dashboard preferences link"), :controller => "/platform/developer/dashboard", :action => :settings)%>)
|
|
|
|
<% @apps.each do |app| %>
<%=link_to(tr("info", "Application action link"), :controller => "/platform/apps", :action => :view, :id => app.id, :sec => 'Info')%>
| <%=link_to(tr("reviews", "Application action link"), :controller => "/platform/apps", :action => :view, :id => app.id, :sec => 'Reviews')%>
| <%=link_to(tr("discussions", "Application action link"), :controller => "/platform/apps", :action => :view, :id => app.id, :sec => 'Discussions')%>
| <%=link_to(tr("configure", "Application action link"), :controller => "/platform/developer/apps", :action => :index, :id => app.id)%>
<%=platform_toggler_tag("app_content_#{app.id}")%>
<%=image_tag(app.icon_url, :title=>app.name) %>
<%=app.versioned_name%>
<%=render :partial=>"statistics", :locals => {:app => app}%>
<%=render :partial=>"reviews", :locals => {:app => app}%>
<%=render :partial=>"discussions", :locals => {:app => app}%>
<% end %>
<%= render :partial => "/platform/developer/common/footer" %>