33 lines
786 B
Plaintext
33 lines
786 B
Plaintext
<.header>
|
|
Device <%= @device.id %>
|
|
<:subtitle>This is a device record from your database.</:subtitle>
|
|
<:actions>
|
|
<.link patch={~p"/devices/#{@device}/show/edit"} phx-click={JS.push_focus()}>
|
|
<.button>Edit device</.button>
|
|
</.link>
|
|
</:actions>
|
|
</.header>
|
|
|
|
<.list>
|
|
<:item title="IP Address"><%= @device.ip_address %></:item>
|
|
<:item title="TTS"><%= @device.tts %></:item>
|
|
</.list>
|
|
|
|
<.back navigate={~p"/devices"}>Back to devices</.back>
|
|
|
|
<.modal
|
|
:if={@live_action == :edit}
|
|
id="device-modal"
|
|
show
|
|
on_cancel={JS.patch(~p"/devices/#{@device}")}
|
|
>
|
|
<.live_component
|
|
module={HereIAmWeb.DeviceLive.FormComponent}
|
|
id={@device.id}
|
|
title={@page_title}
|
|
action={@live_action}
|
|
device={@device}
|
|
patch={~p"/devices/#{@device}"}
|
|
/>
|
|
</.modal>
|