Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%= form_for(basic_information) do |form| %>
- <%= form_tag basic_information_path do %>
- <% if current_user.sub_sections.include?("1.1") or current_user.adm_sub_sections.include?("1.1") %>
- <i class="notice">Поля, отмеченные знаком *, обязательны для заполнения</i>
- <div class="box_shadow">
- <h3>Основные сведения</h3>
- <table class="unstriped">
- <tr>
- <td>Дата создания образовательной организации *</td>
- <td><%= form.text_field :date_create, id: :basic_information_date_create, :required => true %></td>
- </tr>
- <tr>
- <td >Адрес местонахождения образовательной организации *</td>
- <td><%= form.text_field :address, id: :basic_information_address, :required => true %></td>
- </tr>
- <tr>
- <td>Режим, график работы *</td>
- <td><%= form.text_field :mode, id: :basic_information_mode, :required => true %></td>
- </tr>
- <tr>
- <td>Контактные телефоны *</td>
- <td><%= form.text_field :phones, id: :basic_information_phones, :required => true %></td>
- </tr>
- <tr>
- <td>Факсы *</td>
- <td><%= form.text_field :faxes, id: :basic_information_faxes, :required => true %></td>
- </tr>
- <tr>
- <td>Адреса электронной почты *</td>
- <td><%= form.text_field :emails, id: :basic_information_emails, :required => true %></td>
- </tr>
- </table>
- </div>
- <% end %>
- <% if current_user.sub_sections.include?("1.2") or current_user.adm_sub_sections.include?("1.2") %>
- <i class="notice">Поля, отмеченные знаком *, обязательны для заполнения</i>
- <div class="box_shadow">
- <h3>Филиалы образовательной организации</h3>
- <table class="unstriped">
- <thead>
- <th>Наименование филиала *</th>
- <th>Адрес местонахождения филиала образовательной организации *</th>
- <th>Адрес официального сайта в сети «Интернет» (при наличии)</th>
- <th></th>
- </thead>
- <tbody>
- <% @filiations_list.each do |fl| %>
- <% if fl.owner == current_user.id or current_user.adm_sub_sections.include?("1.2") %>
- <%= fields_for 'filiations[]', fl do |fill| %>
- <tr>
- <td><%= fill.text_field :name, id: :filiation_name, :required => true %></td>
- <td><%= fill.text_field :address, id: :filiation_address, :required => true %></td>
- <td><%= fill.text_field :off_site, id: :filiation_off_site %></td>
- <td><%= link_to basic_information_path(fl_id: fl.id), :method => :delete, remote: true, :class => "delete_button" do %><i class="fa fa-minus fa-2x" aria-hidden="true"></i><% end %></td>
- </tr>
- <% end %>
- <% else %>
- <tr>
- <td><%= fl.name %></td>
- <td><%= fl.address %></td>
- <td><%= fl.off_site %></td>
- </tr>
- <% end %>
- <% end %>
- </tbody>
- </table>
- <%= link_to "Добавить филиал",{:controler => :basic_information, :action => 'create', :create => 'fil'}, :method => :create, :class => "success button" %>
- </div>
- <% end %>
- <% if current_user.sub_sections.include?("1.3") or current_user.adm_sub_sections.include?("1.3") %>
- <i class="notice">Поля, отмеченные знаком *, обязательны для заполнения</i>
- <div class="box_shadow">
- <h3>Учредители образовательной организации</h3>
- <table class="table table-bordered">
- <thead>
- <th>Наименование учредителя *</th>
- <th>Фамилия, имя, отчество руководителя учредителя (ей) образовательной организации</th>
- <th>Адрес местонахождения учредителя(ей)</th>
- <th>Контактные телефоны</th>
- <th>Адрес электронной почты</th>
- <th>Адрес сайта учредителя(ей) в сети «Интернет»</th>
- <th></th>
- </thead>
- <tbody>
- <% @founders_list.each do |fn| %>
- <% if fn.owner == current_user.id or current_user.adm_sub_sections.include?("1.3") %>
- <%= fields_for 'founders[]', fn do |fill| %>
- <tr>
- <td><%= fill.text_field :name, id: :founder_name %></td>
- <td><%= fill.text_field :director, id: :founder_director, :required => true %></td>
- <td><%= fill.text_field :address, id: :founder_address %></td>
- <td><%= fill.text_field :phones, id: :founder_phones, :required => true %></td>
- <td><%= fill.text_field :email, id: :founder_email, :required => true %></td>
- <td> <%= fill.text_field :off_site, id: :founder_phones, :required => true %></td>
- <td><%= link_to basic_information_path(fn_id: fn.id), :method => :delete, remote: true, :class => "delete_button" do %><i class="fa fa-minus fa-2x" aria-hidden="true"></i><% end %></td>
- </tr>
- <% end %>
- <% else %>
- <tr>
- <td><%= fn.name %></td>
- <td><%= fn.director %></td>
- <td><%= fn.address %></td>
- <td><%= fn.phones %></td>
- <td><%= fn.email %></td>
- <td><%= fn.off_site %></td>
- </tr>
- <% end %>
- <% end %>
- </tbody>
- </table>
- <%= link_to "Добавить учредителя",{:controler => :basic_information, :action => 'create', :create => 'found'}, :method => :create, :class => "success button" %>
- </div>
- <% end %>
- <div class="actions">
- <%= button_tag(type: "submit", class: "button save_btn") do %>Сохранить изменения <% end %>
- </div>
- <% end %>
- <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement