Packages
torch
4.3.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/slime/phx.gen.html/index.html.slime
section#torch-toolbar
.torch-container
= link "New <%= schema.human_singular %>", to: Routes.<%= schema.route_helper %>_path(@conn, :new)
section#torch-index-content
.torch-container
section#torch-filters
h3 Find <%= schema.human_plural %>
= form_tag @conn.request_path, method: :get, id: "torch-filters-form" do
<%= for {key, type} <- schema.attrs, type in [:string, :text] do %>
.field
label <%= Phoenix.Naming.humanize(Atom.to_string(key)) %>
= filter_select(:<%= schema.singular %>, :<%= key %>, @conn.params)
= filter_text_input(:<%= schema.singular %>, :<%= key %>, @conn.params)
<% end %>
<%= for {key, type} <- schema.attrs, type in [:boolean] do %>
.field
label <%= Phoenix.Naming.humanize(Atom.to_string(key)) %>
= filter_boolean_input(:<%= schema.singular %>, :<%= key %>, @conn.params)
<% end %>
<%= for {key, type} <- schema.attrs, type in [:date, :datetime, :utc_datetime, :naive_datetime] do %>
.field
label <%= Phoenix.Naming.humanize(Atom.to_string(key)) %>
= filter_date_input(:<%= schema.singular %>, :<%= key %>, @conn.params)
<% end %>
<%= for {key, type} <- schema.attrs, type in [:number, :integer] do %>
.field
label <%= Phoenix.Naming.humanize(Atom.to_string(key)) %>
= number_filter_select(:<%= schema.singular %>, :<%= key %>, @conn.params)
= filter_number_input(:<%= schema.singular %>, :<%= key %>, @conn.params)
<% end %>
button.torch-button type="submit" Search
= link "Clear Filters", to: Routes.<%= schema.route_helper %>_path(@conn, :index)
section#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) %>)
<% end %>
th
span Actions
tbody
= for <%= schema.singular %> <- @<%= schema.plural %> do
tr
<%= for {k, _} <- schema.attrs do %>
td= <%= schema.singular %>.<%= k %>
<% end %>
td.torch-actions
span= link "Show", to: Routes.<%= schema.route_helper %>_path(@conn, :show, <%= schema.singular %>)
span= link "Edit", to: Routes.<%= schema.route_helper %>_path(@conn, :edit, <%= schema.singular %>)
span= link "Delete", to: Routes.<%= schema.route_helper %>_path(@conn, :delete, <%= schema.singular %>), method: :delete, data: [confirm: "Are you sure?"]
= render Torch.PaginationView, "_pagination.html", assigns
- else
p.torch-no-data No <%= schema.human_plural %> match your search.