Web check-in: Show ticket secret on result card

This commit is contained in:
Raphael Michel
2021-08-24 12:05:25 +02:00
parent f4ad2a2293
commit e564952148
2 changed files with 5 additions and 2 deletions

View File

@@ -31,7 +31,8 @@
<div class="details">
<h4>{{ checkResult.position.order }}-{{ checkResult.position.positionid }} {{ checkResult.position.attendee_name }}</h4>
<strong v-if="checkResult.reason_explanation">{{ checkResult.reason_explanation }}<br></strong>
<span>{{ checkResultItemvar }}</span>
<span>{{ checkResultItemvar }}</span><br>
<span class="secret">{{ checkResult.position.secret }}</span>
<span v-if="checkResult.position.seat"><br>{{ checkResult.position.seat.name }}</span>
</div>
</div>

View File

@@ -84,7 +84,9 @@ a.searchresult {
background: $brand-warning;
}
}
}
a.searchresult, .check-result {
.secret {
word-break: break-word;
color: $text-muted;
@@ -150,4 +152,4 @@ a.searchresult {
.modal-footer .btn-primary.pull-right {
margin-left: 10px;
}
}