Packages
torch
5.1.2
6.0.0
5.6.0
5.5.0
5.4.0
5.3.2
5.3.1
5.2.0
5.1.2
5.1.1
5.1.0
5.0.0
5.0.0-rc.4
5.0.0-rc.3
5.0.0-rc.2
5.0.0-rc.1
5.0.0-rc.0
4.3.2
4.3.1
4.3.0
4.2.1
4.2.0
retired
4.1.0
4.0.0
4.0.0-rc.0
3.9.1
3.9.0
3.8.0
3.7.1
3.7.0-rc.0
3.6.4
3.6.3
3.6.2
3.6.1
3.6.0
3.5.0
3.4.1
3.4.0
3.3.1
3.3.0
3.2.1
3.2.0
3.1.0
3.0.0
2.1.0
2.0.0
2.0.0-rc.3
2.0.0-rc.2
2.0.0-rc.1
1.0.0-rc.6
1.0.0-rc.5
1.0.0-rc.4
1.0.0-rc.3
1.0.0-rc.2
1.0.0-rc.1
0.2.0-rc.5
0.2.0-rc.4
0.2.0-rc.3
0.2.0-rc.2
0.2.0-rc.1
0.1.0
Rapid admin generator for Phoenix
Current section
Files
Jump to
Current section
Files
priv/templates/phx.gen.html/index.html.heex
<section id="torch-toolbar">
<div class="torch-container">
<.link href={~p"<%= schema.route_prefix %>/new"} class="torch-button">New <%= schema.human_singular %></.link>
</div>
</section>
<section id="torch-index-content">
<div class="torch-container">
<section id="torch-filters">
<h3>Find <%= schema.human_plural %></h3>
<%%= form_tag @conn.request_path, method: :get, id: "torch-filters-form" do %>
<%= for {key, type} <- schema.attrs, type in [:string, :text] do %>
<div class="field">
<label><%= Phoenix.Naming.humanize(Atom.to_string(key)) %></label>
<%%= filter_select(:<%= schema.singular %>, :<%= key %>, @conn.params) %>
<%%= filter_string_input(:<%= schema.singular %>, :<%= key %>, @conn.params) %>
</div>
<% end %>
<%= for {key, type} <- schema.attrs, type in [:boolean] do %>
<div class="field">
<label><%= Phoenix.Naming.humanize(Atom.to_string(key)) %></label>
<%%= filter_boolean_input(:<%= schema.singular %>, :<%= key %>, @conn.params) %>
</div>
<% end %>
<%= for {key, type} <- schema.attrs, type in [:date, :datetime, :utc_datetime, :naive_datetime] do %>
<div class="field">
<label><%= Phoenix.Naming.humanize(Atom.to_string(key)) %></label>
<%%= filter_date_input(:<%= schema.singular %>, :<%= key %>, @conn.params) %>
</div>
<% end %>
<%= for {key, type} <- schema.attrs, type in [:number, :integer] do %>
<div class="field">
<label><%= Phoenix.Naming.humanize(Atom.to_string(key)) %></label>
<%%= number_filter_select(:<%= schema.singular %>, :<%= key %>, @conn.params) %>
<%%= filter_number_input(:<%= schema.singular %>, :<%= key %>, @conn.params) %>
</div>
<% end %>
<button type="submit" class="torch-button">Search</button>
<%%= link "Clear Filters", to: ~p"<%= schema.route_prefix %>" %>
<%% end %>
</section>
<section id="torch-table">
<%%= if length(@<%= schema.plural %>) > 0 do %>
<table>
<thead>
<tr>
<%= for {k, _} <- schema.attrs do %>
<th><%%= table_link(@conn, "<%= Phoenix.Naming.humanize(Atom.to_string(k)) %>", <%= inspect(k) %>) %></th>
<% end %>
<th><span>Actions</span></th>
</tr>
</thead>
<tbody>
<%%= for <%= schema.singular %> <- @<%= schema.plural %> do %>
<tr>
<%= for {k, _} <- schema.attrs do %>
<td><%%= <%= schema.singular %>.<%= k %> %></td>
<% end %>
<td class="torch-actions">
<span><.link href={~p"<%= schema.route_prefix %>/#{<%= schema.singular %>}"}><%%= Torch.I18n.message("Show") %></.link></span>
<span><.link href={~p"<%= schema.route_prefix %>/#{<%= schema.singular %>}/edit"}><%%= Torch.I18n.message("Edit") %></.link></span>
<span><.link href={~p"<%= schema.route_prefix %>/#{<%= schema.singular %>}"} method="delete" data-confirm={Torch.I18n.message("Are you sure?")}><%%= Torch.I18n.message("Delete") %></.link></span>
</td>
</tr>
<%% end %>
</tbody>
</table>
<%%= Torch.PaginationView.pagination(@conn) %>
<%% else %>
<p class="torch-no-data">No <%= schema.human_plural %> match your search.</p>
<%% end %>
</section>
</div>
</section>