24 lines
687 B
Plaintext
24 lines
687 B
Plaintext
<fieldset class="box tabular">
|
|
<legend>역할 그룹 정보</legend>
|
|
|
|
<p>
|
|
<%= f.label :name, '그룹명' %> <span class="required">*</span>
|
|
<%= f.text_field :name, size: 40, required: true, placeholder: 'DBA, 시스템, 방화벽 등' %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= f.label :description, '설명' %>
|
|
<%= f.text_area :description, rows: 3, cols: 60, placeholder: '이 역할 그룹에 대한 설명' %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= f.label :color, '색상' %>
|
|
<%= f.color_field :color, value: (@role_group.color || '#007bff') %>
|
|
</p>
|
|
|
|
<p>
|
|
<%= f.label :position, '순서' %>
|
|
<%= f.number_field :position, value: (@role_group.position || 0), min: 0 %>
|
|
</p>
|
|
</fieldset>
|