Commit 906a56a32a0a7f70cb629380e4c03954f91530d8
1 parent
bdd0bf0f
Exists in
theme-brasil-digital-from-staging
and in
9 other branches
comment_paragraph: improve admin view
Showing
1 changed file
with
7 additions
and
3 deletions
Show diff stats
plugins/comment_paragraph/views/comment_paragraph_plugin_admin/index.html.erb
| ... | ... | @@ -6,10 +6,14 @@ |
| 6 | 6 | <div class="activation-mode"> |
| 7 | 7 | <h4><%= _('Activation Mode') %></h4> |
| 8 | 8 | <div class="auto"> |
| 9 | - <%= f.radio_button(:activation_mode, 'auto') %> <%= _('Auto') %> | |
| 9 | + <%= f.radio_button(:activation_mode, 'auto') %> | |
| 10 | + <span class="name"><strong><%= _('Auto') %></strong></span> | |
| 11 | + <span class="detail"><%= _('(all text articles will be activated by default)') %></span> | |
| 10 | 12 | </div> |
| 11 | - <div> | |
| 12 | - <%= f.radio_button(:activation_mode, 'manual') %> <%= _('Manual') %> | |
| 13 | + <div class="manual"> | |
| 14 | + <%= f.radio_button(:activation_mode, 'manual') %> | |
| 15 | + <span class="name"><strong><%= _('Manual') %></strong></span> | |
| 16 | + <span class="detail"><%= _('(click on "Activate Comment Paragraph" )') %></span> | |
| 13 | 17 | </div> |
| 14 | 18 | </div> |
| 15 | 19 | ... | ... |