<% if params[:sec] == 'Info' %>
<%=tr("Basic Information")%>
<%=tr("Description:")%>
|
<%=@app.description%>
|
<% if @app.developer.about %>
<%=tr("Developer Info:")%>
|
<%=@app.developer.about%>
|
<% end %>
<% if @app.developer.name %>
<%=tr("Developer Name:")%>
|
<%=@app.developer.name%>
|
<% end %>
<% if @app.developer.url %>
<%=tr("Website:")%>
|
<%=@app.developer.url%>
|
<% end %>
<%= render :partial => "/platform/ratings/list" %>
<% end %>
<% if params[:sec] == 'Reviews' %>
<%= render :partial => "/platform/ratings/list" %>
<% end %>
<% if params[:sec] == 'Discussions' %>
<% if @topic %>
<%= render :partial => "/platform/forum/topic" %>
<% else %>
<% if params[:mode] == 'create' %>
<%= render :partial => "/platform/forum/new_topic", :locals => {:include_cancel_button => true} %>
<% else %>
<%= render :partial => "/platform/forum/topics" %>
<% end %>
<% end %>
<% end %>
<%= render :partial => "/platform/apps/app_footer" %>