2017-01-25 19:01:23 +08:00
|
|
|
<% provide(:head_title, t("users.settings.teams.head_title")) %>
|
2018-05-15 23:10:31 +08:00
|
|
|
<% provide(:container_class, "no-second-nav-container") %>
|
2017-01-25 19:01:23 +08:00
|
|
|
|
2018-04-05 22:30:02 +08:00
|
|
|
<%= render partial: "users/settings/sidebar.html.erb" %>
|
2017-01-25 19:01:23 +08:00
|
|
|
<div class="tab-content">
|
2018-05-15 23:10:31 +08:00
|
|
|
<div class="tab-pane content-pane" role="tabpanel"></div>
|
|
|
|
<div class="tab-pane content-pane active" role="tabpanel">
|
2017-01-25 19:01:23 +08:00
|
|
|
|
|
|
|
<%= render partial: "users/settings/teams/breadcrumbs.html.erb" %>
|
|
|
|
|
|
|
|
<%= bootstrap_form_for @new_team, url: create_team_path do |f| %>
|
|
|
|
<div class="form-group" style="max-width: 500px;">
|
|
|
|
<%= f.text_field :name,
|
|
|
|
label: t('users.settings.teams.new.name_label'),
|
|
|
|
autofocus: true,
|
|
|
|
placeholder: t('users.settings.teams.new.name_placeholder') %>
|
|
|
|
<small>
|
|
|
|
<%=t 'users.settings.teams.new.name_sublabel' %>
|
|
|
|
</small>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="form-group" style="max-width: 500px;">
|
|
|
|
<%= f.text_area :description, label: t('users.settings.teams.new.description_label') %>
|
|
|
|
<small>
|
|
|
|
<%=t 'users.settings.teams.new.description_sublabel' %>
|
|
|
|
</small>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= link_to t('general.cancel'), teams_path, class: 'btn btn-default' %>
|
2018-04-26 21:19:05 +08:00
|
|
|
<%= f.submit t('users.settings.teams.new.create'), class: 'btn btn-success' %>
|
2017-01-25 19:01:23 +08:00
|
|
|
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|