Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZ.J. van de Weg <git@zjvandeweg.nl>2017-02-07 10:24:57 +0300
committerZ.J. van de Weg <git@zjvandeweg.nl>2017-02-16 11:19:28 +0300
commit8ddbc43576c1cebd652d6f3541574f0176794510 (patch)
tree3dfe430f289db8a461220d26f19689013471d363 /app/views/groups/_create_chat_team.html.haml
parentb4244efaf1ab955e5900e87c3ec4e9465ba38bff (diff)
Improve DRYness of views
Diffstat (limited to 'app/views/groups/_create_chat_team.html.haml')
-rw-r--r--app/views/groups/_create_chat_team.html.haml18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/views/groups/_create_chat_team.html.haml b/app/views/groups/_create_chat_team.html.haml
new file mode 100644
index 00000000000..b2b5a2090f9
--- /dev/null
+++ b/app/views/groups/_create_chat_team.html.haml
@@ -0,0 +1,18 @@
+.form-group
+ = f.label :name, class: 'control-label' do
+ %span.mattermost-icon
+ = custom_icon('icon_mattermost')
+ Mattermost
+ .col-sm-10
+ .checkbox
+ = f.label :name do
+ = f.check_box :create_chat_team, checked: true
+ Link the group to a new Mattermost team
+
+.form-group
+ = f.label :chat_team, class: 'control-label' do
+ Chat Team name
+ .col-sm-10
+ = f.text_field :chat_team, placeholder: @group.name, class: 'form-control mattermost-team-name'
+ Leave blank to match your group name
+