2023-06-25 12:26:17 +02:00
|
|
|
header.header
|
|
|
|
.header-inner.container
|
2023-07-19 13:59:52 +02:00
|
|
|
a.header-logo.text-dark(href="/")
|
|
|
|
img.header-logoImage(
|
|
|
|
src="/public/img/helcel.png",
|
|
|
|
alt="Helcel logo",
|
|
|
|
width="40"
|
|
|
|
)
|
2023-07-19 09:23:30 +02:00
|
|
|
span.hide-small OTM
|
|
|
|
.input.input-invis.row
|
2023-07-19 13:59:52 +02:00
|
|
|
input.col-6.small(v-model="journey_data.name", type="text")
|
|
|
|
input.col-6.small(
|
|
|
|
disabled,
|
|
|
|
type="text",
|
|
|
|
:placeholder="total_date() + ' (' + total_days() + ')'"
|
|
|
|
)
|
|
|
|
.row.header-nav.text-big(style="margin-bottom: 0")
|
2023-06-25 12:26:17 +02:00
|
|
|
.col-sm-2
|
2023-07-19 13:59:52 +02:00
|
|
|
a(:href="'/short/' + journey_id")
|
2023-06-25 12:26:17 +02:00
|
|
|
i.fas.fa-file-contract
|
|
|
|
.col-sm-2
|
2023-07-19 13:59:52 +02:00
|
|
|
a(:href="'/view/' + journey_id")
|
2023-06-25 12:26:17 +02:00
|
|
|
i.fas.fa-camera
|
|
|
|
.col-sm-2
|
2023-07-19 13:59:52 +02:00
|
|
|
a(href="#main", v-on:click.prevent="first_step")
|
2023-06-25 12:26:17 +02:00
|
|
|
i.fas.fa-tools
|
|
|
|
.col-sm-1.text-small
|
2023-07-19 13:59:52 +02:00
|
|
|
a(href="#prevprev", v-on:click.prevent="prevprev_step")
|
2023-06-25 12:26:17 +02:00
|
|
|
i.fas.fa-angle-double-left
|
|
|
|
.col-sm-1
|
2023-07-19 13:59:52 +02:00
|
|
|
a(href="#prev", v-on:click.prevent="prev_step")
|
2023-06-25 12:26:17 +02:00
|
|
|
i.fas.fa-angle-left
|
|
|
|
.col-sm-1
|
2023-07-19 13:59:52 +02:00
|
|
|
a(href="#next", v-on:click.prevent="next_step")
|
2023-06-25 12:26:17 +02:00
|
|
|
i.fas.fa-angle-right
|
|
|
|
.col-sm-1.text-small
|
2023-07-19 13:59:52 +02:00
|
|
|
a(href="#nextnext", v-on:click.prevent="nextnext_step")
|
|
|
|
i.fas.fa-angle-double-right
|