Update design of public pages
This commit is contained in:
@ -1,20 +1,5 @@
|
||||
<.header>
|
||||
Listing Autoren
|
||||
<:actions>
|
||||
<.link href={~p"/autoren/new"}>
|
||||
<.button>New Autor</.button>
|
||||
</.link>
|
||||
</:actions>
|
||||
Autoren
|
||||
</.header>
|
||||
|
||||
<.table id="autoren" rows={@autoren} row_click={&JS.navigate(~p"/autoren/#{&1}")}>
|
||||
<:col :let={autor} label="Name"><%= autor.name %></:col>
|
||||
<:col :let={autor} label="Description"><%= autor.description %></:col>
|
||||
<:col :let={autor} label="Homepage name"><%= autor.homepage_name %></:col>
|
||||
<:col :let={autor} label="Homepage url"><%= autor.homepage_url %></:col>
|
||||
<:action :let={autor}>
|
||||
<div class="sr-only">
|
||||
<.link navigate={~p"/autoren/#{autor}"}>Show</.link>
|
||||
</div>
|
||||
</:action>
|
||||
</.table>
|
||||
<.autor :for={autor <- @autoren} autor={autor} />
|
||||
|
||||
@ -7,10 +7,7 @@
|
||||
|
||||
|
||||
<%= for article <- @autor.articles do %>
|
||||
<div :for={translation <- article.translations} class="my-2 px-2 rounded border-2 border-solid border-gray-300">
|
||||
<.link navigate={~p"/artikel/#{translation}"}><h4 class="font-bold py-2"><%= translation.title %></h4></.link>
|
||||
<div><%= translation.teaser %></div>
|
||||
</div>
|
||||
<.artikel :for={translation <- article.translations} artikel={translation} show_author={false} />
|
||||
<% end %>
|
||||
|
||||
<.back navigate={~p"/autoren"}>Back to autoren</.back>
|
||||
|
||||
Reference in New Issue
Block a user