Sha256: ec6e9adaea1b0ef5acb282fef86ba4b0feff1bdc716bfa837626b1f7a62f9f32

Contents?: true

Size: 1.23 KB

Versions: 2

Compression:

Stored size: 1.23 KB

Contents

  <% @page_heading = _("User") + ": #{@user.name}" %>

  <% content_for('tasks') do %>
    <%= task_new 'Create new user' %>
    <%= task_edit 'Edit this user', @user.id %>
  <% end %> 

  <div class="form">	
    <label><%= _("Name")%>:</label> <span class="static"><%=h @user.name %></span><br/>
    <label><%= _("Login")%>:</label> <span class="static"><%=h @user.login %></span><br/>
    <label><%= _("Email")%>:</label> <span class="static"><%=h @user.email %></span><br/>
    <label><%= _("Jabber")%>:</label> <span class="static"><%=h @user.jabber %></span><br/>
    <label><%= _("Notify via email")%>:</label> <span class="static"><%= @user.notify_via_email? ? _("yes") : _("no") %></span><br/>
    <label><%= _("Notify via jabber")%>:</label> <span class="static"><%= @user.notify_via_jabber? ? _("yes") : _("no") %></span><br/>
    <label><%= _("Notify on new articles")%>:</label> <span class="static"><%= @user.notify_on_new_articles? ? _("yes") : _("no") %></span><br/>
    <label><%= _("Notify on new comments")%>:</label> <span class="static"><%= @user.notify_on_comments? ? _("yes") : _("no") %></span><br/>
    
  </div>


  <div class="list">
    <h2><%= _("User's articles")%></h2>
    <%= render :partial => 'admin/content/articles' %>
  </div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
typo-4.1.1 app/views/admin/users/show.rhtml
typo-4.1 app/views/admin/users/show.rhtml