You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

26 lines
1.2 KiB

<div class="card mt-1 g-3">
<div class="card-header mb-0 col-sm-12">
<table class="table table-borderless mb-0">
<tbody>
<tr>
<td class="text-start" style="width: 160px;"> Reference Number: </td>
<td class="text-start"> <strong> <%= @jurisprudence.present? ? @jurisprudence.reference_number : "(No Document Reference NUmber)" %> </strong> </td>
<td class="text-end" style="width: 50px;" > Date: </td>
<td class="text-end" style="width: 160px;"> <strong> <%= @jurisprudence.present? ? @jurisprudence.docdate : "(No Document Date)" %> </strong> </td>
</tr>
<tr>
<td style="width: 160px;" class="text-start"> Title: </td>
<td colspan="3" class="text-start"> <strong> <%= @jurisprudence.present? ? @jurisprudence.short_title || @jurisprudence.title : "(No Document Date)" %> </strong> </td>
</tr>
</tbody>
</table>
</div>
<div class="card-body pt-0">
<div class="row">
<%= render(DocumentDoctrineShowComponent.new(current_user: current_user, annotations: @annotations, doctrine: @doctrine, document_id: @jurisprudence.present? ? @jurisprudence.id : @jurisprudence, subjects: @subjects)) %>
</div>
</div>
</div>