myMedisys/tomcatfiles/mymedisys-frontend/WEB-INF/classes/templates/page/registration/registration-header.html
2023-09-06 05:56:42 +05:30

14 lines
697 B
HTML

<div class="row">
<div class="col-sm-12 col-md-4 col-lg-4">
<label class="text-muted" th:text="#{'Registration Reference No.'}"></label>
<h6 th:text="*{registrationDto?.regRefNo}" />
</div>
<div class="col-sm-12 col-md-4 col-lg-4">
<label class="text-muted" th:text="#{'Registration Date'}"></label>
<!-- <h6 th:text="${registrationDto?.createDt != null ? #dates.format(registrationDto?.createDt, 'dd/MM/yyyy') : '-'}"></h6> -->
</div>
<div class="col-sm-12 col-md-4 col-lg-4">
<label class="text-muted" th:text="#{'Approval Date'}"></label>
<h6 th:text="${registrationDto?.approvedDt != null ? #dates.format(registrationDto?.approvedDt, 'dd/MM/yyyy') : '-'}"></h6>
</div>
</div>