Skip to content

Commit

Permalink
feat: UI changes
Browse files Browse the repository at this point in the history
  • Loading branch information
rogeriolino committed Oct 25, 2024
1 parent 4f8be31 commit 67b8818
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/Resources/views/default/index.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@
</form>
<hr>
<div class="result">
<table class="table table-bordered">
<table class="table table-hover">
<thead>
<tr>
<tr class="table-primary">
<th>{{ 'label.ticket.number'|trans }}</th>
<th>{{ 'label.service'|trans }}</th>
<th>{{ 'label.ticket.arrival_date'|trans }}</th>
Expand Down Expand Up @@ -177,7 +177,7 @@
<input type="hidden" v-bind:valuee="atendimento.id" />
<fieldset>
<legend>{{ 'modal.attendance.ticket'|trans }}</legend>
<table class="table table-bordered">
<table class="table border">
<tr>
<th>
{{ 'label.ticket.number'|trans }}
Expand Down Expand Up @@ -262,16 +262,16 @@
</fieldset>


<fieldset v-if="atendimento.cliente">
<fieldset>
<legend>{{ 'label.customer'|trans }}</legend>
<table class="table table-bordered">
<table class="table border">
<tr>
<th>
{{ 'label.customer.name'|trans }}
</th>
<td>
{% verbatim %}
{{atendimento.cliente.nome}}
{{atendimento.cliente?.nome}}
{% endverbatim %}
</td>
</tr>
Expand All @@ -281,7 +281,7 @@
</th>
<td>
{% verbatim %}
{{atendimento.cliente.documento}}
{{atendimento.cliente?.documento}}
{% endverbatim %}
</td>
</tr>
Expand Down

0 comments on commit 67b8818

Please sign in to comment.