##// END OF EJS Templates
Reverting commit r1748. Some environments are not allowing the cached file to...
Reverting commit r1748. Some environments are not allowing the cached file to write to public, causing all JavaScript to fail. Javascripts are now cached into a single file for downloads in production mode. #1186 git-svn-id: http://redmine.rubyforge.org/svn/trunk@1771 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1732:988f8d65fa3d
r1770:8f3a04ce6906
Show More
show.rhtml
31 lines | 1023 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Adds 'Edit' link on account/show for admin users....
r1732 <div class="contextual">
<%= link_to(l(:button_edit), {:controller => 'users', :action => 'edit', :id => @user}, :class => 'icon icon-edit') if User.current.admin? %>
</div>
Jean-Philippe Lang
Removed User#display_name (replaced by User#name)....
r575 <h2><%=h @user.name %></h2>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<p>
Jean-Philippe Lang
Escapes HTML tags....
r1598 <%= mail_to(h(@user.mail)) unless @user.pref.hide_mail %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <ul>
<li><%=l(:label_registered_on)%>: <%= format_date(@user.created_on) %></li>
<% for custom_value in @custom_values %>
<% if !custom_value.value.empty? %>
<li><%= custom_value.custom_field.name%>: <%=h show_value(custom_value) %></li>
<% end %>
<% end %>
</ul>
</p>
Jean-Philippe Lang
Don't show "Projects" label if projects list is empty....
r565 <% unless @memberships.empty? %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h3><%=l(:label_project_plural)%></h3>
Jean-Philippe Lang
Fixed confidentiality issue on account/show....
r564 <ul>
<% for membership in @memberships %>
Jean-Philippe Lang
Escapes HTML tags....
r1598 <li><%= link_to(h(membership.project.name), :controller => 'projects', :action => 'show', :id => membership.project) %>
(<%=h membership.role.name %>, <%= format_date(membership.created_on) %>)</li>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <% end %>
Jean-Philippe Lang
Fixed confidentiality issue on account/show....
r564 </ul>
Jean-Philippe Lang
Don't show "Projects" label if projects list is empty....
r565 <% end %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
<h3><%=l(:label_activity)%></h3>
<p>
Jean-Philippe Lang
Some deprecation fixes (end_form_tag and count API)....
r665 <%=l(:label_reported_issues)%>: <%= Issue.count(:conditions => ["author_id=?", @user.id]) %>
Jean-Philippe Lang
Initial commit...
r2 </p>