Advertisement
Guest User

Untitled

a guest
Apr 19th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <style type="text/css">
  2.     .n2o-dialog-confirm footer {
  3.         text-align: right;
  4.     }
  5.  
  6.     .n2o-dialog-confirm footer button {
  7.         margin-left: 15px;
  8.     }
  9.  
  10.     .table > tbody > tr > th, .table > tbody > tr > td {
  11.         border-top: none;
  12.     }
  13. </style>
  14.  
  15. {#context}
  16. <div class="n2o-dialog-confirm">
  17.  
  18.     <div class="modal-header"><h5>{title}</h5></div>
  19.  
  20.     <div class="modal-body">
  21.         <h5>{description}</h5>
  22.  
  23.         <form id="workflow_form">
  24.             <table class="table table-hover">
  25.                 <thead>
  26.                 <tr>
  27.                     <th>Вид родства</th>
  28.                     <th>ФИО</th>
  29.                     <th>Дата рождения</th>
  30.                     <th>Просмотр карточки пациента</th>
  31.                     <th> </th>
  32.                 </tr>
  33.                 </thead>
  34.                 <tbody>
  35.                 {#data}
  36.                 <tr>
  37.                     <td>{sideName}</td>
  38.                     <td>{surname} {name} {patrName}</td>
  39.                     <td>{birthDateFormat}</td>
  40.                     <!--<td><a id="myDate" href="#">data</a></td>-->
  41.                     <td><a href="#patient?main:filter:id={patientId}" target="_blank">Открыть</a></td>
  42.                     <td><a onclick="window.dischargeRelationList_bc7a5529_76c9_4e8c_b1ec_595ade40116e(this); return false;" data-backend="/backend" data-patient-id="{patientId}" data-clinic-id="{clinicId}" href="#hospital.medicalHistoryList?medicalHistoryList:filter:admissionDate:end=21.05.2019+00:00&medicalHistoryList:filter:patient:birthDate={birthDate}&medicalHistoryList:filter:patient:surname={surname}&medicalHistoryList:filter:patient:name={name}&medicalHistoryList:filter:patient:id={patientId}/hospital.medicalHistoryList.medicalHistoryList.discharge?main:filter:id={stepId}" target="_blank">Выписать</a></td>
  43.                 </tr>
  44.                 {/data}
  45.                 </tbody>
  46.             </table>
  47.         </form>
  48.     </div>
  49.  
  50.     <footer class="modal-footer">
  51.         {#choices}
  52.         <button type="button"
  53.                 data-wf_next_task_id="{nextTaskId}"
  54.                 class="btn {@if cond="'{nextTaskId}'"} btn-primary {/if} confirm">{title}</button>
  55.         {/choices}
  56.     </footer>
  57. </div>
  58.  
  59. <script src="hospital/n2o/workflow/discharge.relation.list.js"></script>
  60. <!--<script>document.getElementById("myDate").href= new Date();</script>-->
  61. {/context}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement