2013-01-19 18:11:11 +01:00
|
|
|
%h3.page_title New Team
|
|
|
|
%hr
|
|
|
|
= form_for @team, url: admin_teams_path do |f|
|
|
|
|
- if @team.errors.any?
|
2013-01-30 15:53:18 +01:00
|
|
|
.alert.alert-error
|
2013-01-19 18:11:11 +01:00
|
|
|
%span= @team.errors.full_messages.first
|
|
|
|
.clearfix
|
|
|
|
= f.label :name do
|
|
|
|
Team name is
|
|
|
|
.input
|
|
|
|
= f.text_field :name, placeholder: "Ex. OpenSource", class: "xxlarge left"
|
|
|
|
|
2013-01-29 21:18:19 +01:00
|
|
|
= f.submit 'Create team', class: "btn btn-primary"
|
2013-01-19 18:11:11 +01:00
|
|
|
%hr
|
|
|
|
.padded
|
|
|
|
%ul
|
2013-01-22 23:20:27 +01:00
|
|
|
%li All created teams are public (users can view who enter into team and which project are assigned for this team)
|
2013-01-19 18:11:11 +01:00
|
|
|
%li People within a team see only projects they have access to
|
2013-01-22 23:20:27 +01:00
|
|
|
%li You will be able to assign existing projects for team
|