Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.94 KB | None | 0 0
  1. @extends('layouts.app')
  2.  
  3. @section('title','Manage Organizational Structure')
  4.  
  5. @section('content')
  6. <div class="title_left">
  7.   <h3>Struktur Organisasi</h3>
  8. </div>
  9.  
  10. <div class ="row">
  11.   <div class ="col-md-12 col-sm-12 col-xs-12">
  12.    <div class ="dashboard_graph x_panel">
  13.     <div class ="row x_title">
  14.      <div class ="col-md-6">
  15.       <h3>Bagan Struktur Organisasi</h3>
  16.     </div>
  17.     <div class ="col-md-12">
  18.     </div>
  19.   </div>
  20.  
  21.   <div id="chart-container"></div>
  22.   <div id="edit-panel" class="view-state">
  23.     <span id="chart-state-panel" class="radio-panel">
  24.       <input type="radio" name="chart-state" id="rd-view" value="view" checked="true"><label for="rd-view">View</label>
  25.       <input type="radio" name="chart-state" id="rd-edit" value="edit"><label for="rd-edit">Edit</label>
  26.     </span>
  27.     <br>
  28.     <label class="selected-node-group">Selected Structure :</label>
  29.     <input type="text" id="selected-node" class="selected-node-group">
  30.     <label>New Structure :</label>
  31.     <input type="text" class="new-node">
  32.     <label>Type Organizational Structure:</label>
  33.  
  34.     <select name="structure_type">
  35.       @foreach (App\Models\StructureType::all() as $key => $structureType)
  36.       <option value="{{ $structureType->id }}">{{ $structureType->name }}</option>
  37.       @endforeach
  38.     </optgroup>
  39.   </select>
  40. {{--     <i class="fa fa-plus-circle btn-inputs" id="btn-add-input"></i>
  41.     <i class="fa fa-minus-circle btn-inputs" id="btn-remove-input"></i>
  42.     <span id="node-type-panel" class="radio-panel">
  43.       <input type="radio" name="node-type" id="rd-parent" value="parent"><label for="rd-parent">Parent(root)</label>
  44.       <input type="radio" name="node-type" id="rd-child" value="children"><label for="rd-child">Child</label>
  45.       <input type="radio" name="node-type" id="rd-sibling" value="siblings"><label for="rd-sibling">Sibling</label>
  46.     </span> --}}
  47.     <button type="button" id="btn-add-nodes">Add</button>
  48.     <button type="button" id="btn-edit-nodes">Edit</button>
  49.     <button type="button" id="btn-delete-nodes">Delete</button>
  50.     <br>
  51.     <label>Select Position</label>
  52.  
  53.     <select name="position_name">
  54.       <optgroup label="Position">
  55.         <option value="">---</option>
  56.       </optgroup>
  57.     </select>
  58.  
  59.  
  60.     <label class="control-label">New Position</label>
  61.     <input type="text" name="position_name" class="selected-node-group">
  62.  
  63.     <label>Level Of Position</label>
  64.  
  65.     <select name="position_level">
  66.       @foreach (App\Models\LevelOfPosition::all() as $key => $level)
  67.       <option value="{{ $level->id }}">{{ $level->name }}</option>
  68.       @endforeach
  69.     </select>
  70.  
  71.     <button type="button" id="btn-add-position">Add Position</button>
  72.     <button type="button" id="btn-delete-position">Delete Position</button>
  73.   </div>
  74.  
  75. </div>
  76. </div>
  77. </div>
  78.  
  79. @endsection
  80.  
  81. @push('scripts')
  82.   <script type="text/javascript" src="{{ asset('assets/admin/sto/js/scriptsorg.js') }}"></script>
  83. @endpush
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement