Packages

A few sentences (a paragraph) describing the project.

Current section

Files

Jump to
vtexws lib vtex_ws_web templates app show.html.eex
Raw

lib/vtex_ws_web/templates/app/show.html.eex

<h1>Show App</h1>
<ul>
<li>
<strong>Name:</strong>
<%= @app.name %>
</li>
<li>
<strong>Slug:</strong>
<%= @app.slug %>
</li>
<li>
<strong>App id:</strong>
<%= @app.app_id %>
</li>
<li>
<strong>Api key:</strong>
<%= @app.api_key %>
</li>
<li>
<strong>Vtex url:</strong>
<%= @app.vtex_url %>
</li>
<li>
<strong>Vtex app key:</strong>
<%= @app.vtex_app_key %>
</li>
<li>
<strong>Vtex app token:</strong>
<%= @app.vtex_app_token |> String.slice(0..20) |> (&<>/2).("...") %>
</li>
</ul>
<span><%= link "Edit", to: Routes.app_path(@conn, :edit, @app) %></span>
<span><%= link "Back", to: Routes.app_path(@conn, :index) %></span>