{% extends 'base.html.twig' %}
{% block title %}ServiceRequest{% endblock %}
{% block body %}
<h1>ServiceRequest</h1>
<div>
<a href="{{ path('service_request_show', { id: service_request.id, format: 'print' }) }}" target="_blank">Print</a>
</div>
<table class="table">
<tbody>
<tr>
<th>Id</th>
<td>{{ service_request.id }}</td>
</tr>
<tr>
<th>IsNewRequest</th>
<td>{{ service_request.isNewRequest ? 'Yes' : 'No' }}</td>
</tr>
<tr>
<th>IsInvoiceDeliveryPost</th>
<td>{{ service_request.isInvoiceDeliveryPost ? 'Yes' : 'No' }}</td>
</tr>
<tr>
<th>InvoiceDeliveryEmail</th>
<td>{{ service_request.invoiceDeliveryEmail }}</td>
</tr>
<tr>
<th>LocationName</th>
<td>{{ service_request.locationName }}</td>
</tr>
<tr>
<th>LocationAddress</th>
<td>{{ service_request.locationAddress }}</td>
</tr>
<tr>
<th>LocationCity</th>
<td>{{ service_request.locationCity }}</td>
</tr>
<tr>
<th>LocationPostalCode</th>
<td>{{ service_request.locationPostalCode }}</td>
</tr>
<tr>
<th>ContactTitle</th>
<td>{{ service_request.contactTitle }}</td>
</tr>
<tr>
<th>ContactFirstName</th>
<td>{{ service_request.contactFirstName }}</td>
</tr>
<tr>
<th>ContactLastName</th>
<td>{{ service_request.contactLastName }}</td>
</tr>
<tr>
<th>ContactPhone</th>
<td>{{ service_request.contactPhone }}</td>
</tr>
<tr>
<th>VoipEnabled</th>
<td>{{ service_request.voipEnabled ? 'Yes' : 'No' }}</td>
</tr>
<tr>
<th>VoipMonthlyFee</th>
<td>{{ service_request.voipMonthlyFee }}</td>
</tr>
<tr>
<th>VoipConnectionFee</th>
<td>{{ service_request.voipConnectionFee }}</td>
</tr>
<tr>
<th>TerminalEquipmentLease</th>
<td>{{ service_request.terminalEquipmentLease ? 'Yes' : 'No' }}</td>
</tr>
<tr>
<th>VoipChannels</th>
<td>{{ service_request.voipChannels }}</td>
</tr>
<tr>
<th>Fax2mailChannels</th>
<td>{{ service_request.fax2mailChannels }}</td>
</tr>
<tr>
<th>PhoneNumeration</th>
<td>{{ service_request.phoneNumeration }}</td>
</tr>
<tr>
<th>FaxNumeration</th>
<td>{{ service_request.faxNumeration }}</td>
</tr>
<tr>
<th>Fax2mailEnabled</th>
<td>{{ service_request.fax2mailEnabled ? 'Yes' : 'No' }}</td>
</tr>
<tr>
<th>Fax2mailEmail</th>
<td>{{ service_request.fax2mailEmail }}</td>
</tr>
<tr>
<th>PhoneNumberTransfer</th>
<td>{{ service_request.phoneNumberTransfer ? 'Yes' : 'No' }}</td>
</tr>
<tr>
<th>InternetAccessEnabled</th>
<td>{{ service_request.internetAccessEnabled ? 'Yes' : 'No' }}</td>
</tr>
<tr>
<th>ContractIndefinite</th>
<td>{{ service_request.contractIndefinite ? 'Yes' : 'No' }}</td>
</tr>
<tr>
<th>ContractOfferNo</th>
<td>{{ service_request.contractOfferNo }}</td>
</tr>
<tr>
<th>ContractDuration</th>
<td>{{ service_request.contractDuration }}</td>
</tr>
</tbody>
</table>
<a href="{{ path('service_request_index') }}">back to list</a>
<a href="{{ path('service_request_edit', {'id': service_request.id}) }}">edit</a>
{{ include('service_request/_delete_form.html.twig') }}
{% endblock %}