Sha256: fb634811de571ed73d5a3189d3ec55ecc6e4e4478b0683288bf460445c9e9fc0

Contents?: true

Size: 1.48 KB

Versions: 16

Compression:

Stored size: 1.48 KB

Contents

<div id="spotlight" title="<%= title_helper %>" class="form">
  <% @page_title = "#{l :editing} #{l :user}" %>

    <%= start_form_tag_helper %>
      <%= render_partial 'edit', :user => @user, :submit => true %>
    </form>
</div>

<div id="rfeature">
  <div class="btitle">
    <h4><%=l :password %></h4>
  </div>

  <%= start_form_tag_helper %>
    <%= render_partial 'password', :submit => true %>
  </form>

  <%= start_form_tag_helper %>
    <div class="user_delete">
      <%= hidden_field 'user', 'form', :value => 'delete' %>
      <%= submit_tag l(:delete) %>
    </div>
  </form>
</div>

<div id="lfeature">
  <div class="btitle">
    <h4><%=l :groups %></h4>
  </div>

  <table>
  <% for @group in @groups %>
    <tr id="group_<%=@group.id%>">
      <td><%=link_to h(@group.name), :controller => 'groups', :action => :edit, :id => @group %></td>
      <td>
        <% form_for :group, :html => {:id => "group_#{@group.id}_form"} do %>
          <%=check_box_tag :value, true, @user.groups.include?(@group) %>
        <% end %>
		<%=observe_form "group_#{@group.id}_form", :url => {:action => :set_group, :group_id => @group.id, :id => @user.id} %>
	  </td>
    </tr>
  <% end %>
  </table>
</div>

<br clear="right"/>

<div id="rfeature">
  <div class="btitle">
    <h4><%=l :periods %></h4>
  </div>

  <table>
  <% for @period in @periods %>
    <tr>
      <td><%=link_to h(@period.name), :controller => 'periods', :action => :show, :id => @period %></td>
    </tr>
  <% end %>
  </table>
</div>

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
backlog-0.14.0 app/views/user/edit.rhtml
backlog-0.14.1 app/views/user/edit.rhtml
backlog-0.14.2 app/views/user/edit.rhtml
backlog-0.14.3 app/views/user/edit.rhtml
backlog-0.14.4 app/views/user/edit.rhtml
backlog-0.15.0 app/views/user/edit.rhtml
backlog-0.16.0 app/views/user/edit.rhtml
backlog-0.15.1 app/views/user/edit.rhtml
backlog-0.17.0 app/views/user/edit.rhtml
backlog-0.17.2 app/views/user/edit.rhtml
backlog-0.17.1 app/views/user/edit.rhtml
backlog-0.17.3 app/views/user/edit.rhtml
backlog-0.17.4 app/views/user/edit.rhtml
backlog-0.17.5 app/views/user/edit.rhtml
backlog-0.17.6 app/views/user/edit.rhtml
backlog-0.18.0 app/views/user/edit.rhtml