format
This commit is contained in:
		| @@ -44,21 +44,18 @@ defmodule CanneryWeb.AmmoGroupLive.FormComponent do | ||||
|         id="ammo_group-form" | ||||
|         phx-target={@myself} | ||||
|         phx-change="validate" | ||||
|         phx-submit="save"> | ||||
|  | ||||
|         <%= label f, :count, class: "title text-lg text-primary-500" %> | ||||
|         <%= number_input f, :count %> | ||||
|         <%= error_tag f, :count %> | ||||
|  | ||||
|         <%= label f, :price_paid, class: "title text-lg text-primary-500" %> | ||||
|         <%= number_input f, :price_paid, step: "any" %> | ||||
|         <%= error_tag f, :price_paid %> | ||||
|  | ||||
|         <%= label f, :notes, class: "title text-lg text-primary-500" %> | ||||
|         <%= textarea f, :notes, class: "input" %> | ||||
|         <%= error_tag f, :notes %> | ||||
|  | ||||
|         <%= submit "Save", phx_disable_with: "Saving..." %> | ||||
|         phx-submit="save" | ||||
|       > | ||||
|         <%= label(f, :count, class: "title text-lg text-primary-500") %> | ||||
|         <%= number_input(f, :count) %> | ||||
|         <%= error_tag(f, :count) %> | ||||
|         <%= label(f, :price_paid, class: "title text-lg text-primary-500") %> | ||||
|         <%= number_input(f, :price_paid, step: "any") %> | ||||
|         <%= error_tag(f, :price_paid) %> | ||||
|         <%= label(f, :notes, class: "title text-lg text-primary-500") %> | ||||
|         <%= textarea(f, :notes, class: "input") %> | ||||
|         <%= error_tag(f, :notes) %> | ||||
|         <%= submit("Save", phx_disable_with: "Saving...") %> | ||||
|       </.form> | ||||
|     </div> | ||||
|     """ | ||||
|   | ||||
| @@ -44,33 +44,27 @@ defmodule CanneryWeb.AmmoTypeLive.FormComponent do | ||||
|         id="ammo_type-form" | ||||
|         phx-target={@myself} | ||||
|         phx-change="validate" | ||||
|         phx-submit="save"> | ||||
|  | ||||
|         <%= label f, :name, class: "title text-lg text-primary-500" %> | ||||
|         <%= text_input f, :name, class: "input input-primary" %> | ||||
|         <%= error_tag f, :name %> | ||||
|  | ||||
|         <%= label f, :desc, class: "title text-lg text-primary-500" %> | ||||
|         <%= text_input f, :desc, class: "input input-primary" %> | ||||
|         <%= error_tag f, :desc %> | ||||
|  | ||||
|         <%= label f, :case_material, class: "title text-lg text-primary-500" %> | ||||
|         <%= text_input f, :case_material, class: "input input-primary" %> | ||||
|         <%= error_tag f, :case_material %> | ||||
|  | ||||
|         <%= label f, :bullet_type, class: "title text-lg text-primary-500" %> | ||||
|         <%= text_input f, :bullet_type, class: "input input-primary" %> | ||||
|         <%= error_tag f, :bullet_type %> | ||||
|  | ||||
|         <%= label f, :weight, class: "title text-lg text-primary-500" %> | ||||
|         <%= number_input f, :weight, step: "any" %> | ||||
|         <%= error_tag f, :weight %> | ||||
|  | ||||
|         <%= label f, :manufacturer, class: "title text-lg text-primary-500" %> | ||||
|         <%= text_input f, :manufacturer, class: "input input-primary" %> | ||||
|         <%= error_tag f, :manufacturer %> | ||||
|  | ||||
|         <%= submit "Save", phx_disable_with: "Saving..." %> | ||||
|         phx-submit="save" | ||||
|       > | ||||
|         <%= label(f, :name, class: "title text-lg text-primary-500") %> | ||||
|         <%= text_input(f, :name, class: "input input-primary") %> | ||||
|         <%= error_tag(f, :name) %> | ||||
|         <%= label(f, :desc, class: "title text-lg text-primary-500") %> | ||||
|         <%= text_input(f, :desc, class: "input input-primary") %> | ||||
|         <%= error_tag(f, :desc) %> | ||||
|         <%= label(f, :case_material, class: "title text-lg text-primary-500") %> | ||||
|         <%= text_input(f, :case_material, class: "input input-primary") %> | ||||
|         <%= error_tag(f, :case_material) %> | ||||
|         <%= label(f, :bullet_type, class: "title text-lg text-primary-500") %> | ||||
|         <%= text_input(f, :bullet_type, class: "input input-primary") %> | ||||
|         <%= error_tag(f, :bullet_type) %> | ||||
|         <%= label(f, :weight, class: "title text-lg text-primary-500") %> | ||||
|         <%= number_input(f, :weight, step: "any") %> | ||||
|         <%= error_tag(f, :weight) %> | ||||
|         <%= label(f, :manufacturer, class: "title text-lg text-primary-500") %> | ||||
|         <%= text_input(f, :manufacturer, class: "input input-primary") %> | ||||
|         <%= error_tag(f, :manufacturer) %> | ||||
|         <%= submit("Save", phx_disable_with: "Saving...") %> | ||||
|       </.form> | ||||
|     </div> | ||||
|     """ | ||||
|   | ||||
| @@ -45,10 +45,10 @@ defmodule CanneryWeb.InviteLive.FormComponent do | ||||
|         class="grid grid-cols-3 justify-center items-center space-y-4" | ||||
|         phx-target={@myself} | ||||
|         phx-change="validate" | ||||
|         phx-submit="save"> | ||||
|  | ||||
|         <%= label f, :name, class: "title text-lg text-primary-500" %> | ||||
|         <%= text_input f, :name, class: "input input-primary col-span-2" %> | ||||
|         phx-submit="save" | ||||
|       > | ||||
|         <%= label(f, :name, class: "title text-lg text-primary-500") %> | ||||
|         <%= text_input(f, :name, class: "input input-primary col-span-2") %> | ||||
|         <span class="col-span-3"> | ||||
|           <%= error_tag(f, :name) %> | ||||
|         </span> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user