soraefir 1960036980
All checks were successful
continuous-integration/drone/push Build is passing
wip
2025-02-28 01:05:10 +01:00

18 lines
682 B
Plaintext

l-marker(
v-if="journey.leg_get().hotel",
:lat-lng="journey.leg_get().hotel.latlon"
)
l-icon(v-html="generate_marker(journey.leg_get().hotel, 'darkblue')")
l-popup
h1.row.text-medium.text-center {{ journey.leg_get().hotel.sname }}
span.row.text-small.text-gray {{ journey.leg_get().hotel.display_name }}
span(v-if="edit_active")
.row.input(style="margin-bottom:0;")
textarea-autosize.col-12.col-sm-12.text-small(
placeholder="Notes",
v-model="journey.leg_get().hotel.notes",
:min-height="30",
:max-height="350"
)
span.row.text-small.text-white(v-else) {{ journey.leg_get().hotel.notes }}