% @page_heading = "User: #{@user.name}" %>
<% content_for('tasks') do %>
<%= task_new 'Create new user' %>
<%= task_edit 'Edit this user', @user.id %>
<% end %>
<%=h @user.name %>
<%=h @user.login %>
<%=h @user.email %>
<%=h @user.jabber %>
<%= @user.notify_via_email? ? "yes" : "no" %>
<%= @user.notify_via_jabber? ? "yes" : "no" %>
<%= @user.notify_on_new_articles? ? "yes" : "no" %>
<%= @user.notify_on_comments? ? "yes" : "no" %>
User's articles
<%= render :partial => 'admin/content/articles' %>