init project

This commit is contained in:
Jasder
2020-03-09 00:40:16 +08:00
commit 2937b2a94d
6549 changed files with 7215173 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<% define_admin_breadcrumbs do %>
<% add_admin_breadcrumb('帮助中心') %>
<% end %>
<div class="box edit-help-center-container">
<%= simple_form_for(@doc, url: admins_help_center_path) do |f| %>
<div class="form-group" id="help-center-editor">
<%= text_area_tag('help_center', @doc.help_center, style: 'display: none') %>
</div>
<div class="form-row mt-4">
<%= f.button :submit, value: '保存', class: 'btn-primary mr-3 px-4', 'data-disable-with': '保存中...' %>
</div>
<% end %>
</div>