##// END OF EJS Templates
fixed: unable to update repository url...
fixed: unable to update repository url git-svn-id: http://redmine.rubyforge.org/svn/trunk@275 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r97:918123cd0663
r272:ae998984a0fd
Show More
show.rhtml
25 lines | 730 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Initial commit...
r2 <h2><%= @user.display_name %></h2>
<p>
Jean-Philippe Lang
"hide my email address" preference added, so that it's not displayed on account/show...
r61 <%= mail_to @user.mail unless @user.pref.hide_mail %>
Jean-Philippe Lang
* new report: project activity...
r42 <ul>
<li><%=l(:label_registered_on)%>: <%= format_date(@user.created_on) %></li>
<% for custom_value in @custom_values %>
<% if !custom_value.value.empty? %>
Jean-Philippe Lang
* code and views cleaning...
r97 <li><%= custom_value.custom_field.name%>: <%=h show_value(custom_value) %></li>
Jean-Philippe Lang
* new report: project activity...
r42 <% end %>
<% end %>
</ul>
Jean-Philippe Lang
Initial commit...
r2 </p>
Jean-Philippe Lang
0.3 unstable...
r10 <h3><%=l(:label_project_plural)%></h3>
Jean-Philippe Lang
Initial commit...
r2 <p>
<% for membership in @user.memberships %>
<%= membership.project.name %> (<%= membership.role.name %>, <%= format_date(membership.created_on) %>)
<br />
<% end %>
</p>
Jean-Philippe Lang
0.3 unstable...
r10 <h3><%=l(:label_activity)%></h3>
Jean-Philippe Lang
Initial commit...
r2 <p>
Jean-Philippe Lang
0.3 unstable...
r10 <%=l(:label_reported_issues)%>: <%= Issue.count(["author_id=?", @user.id]) %>
Jean-Philippe Lang
Initial commit...
r2 </p>