Refactor and add securities controller

This commit is contained in:
2025-01-28 16:13:39 +01:00
parent 55a5ece466
commit 3df76ec650
16 changed files with 509 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
defmodule TradexWeb.SecurityHTML do
use TradexWeb, :html
embed_templates "security_html/*"
@doc """
Renders a security form.
"""
attr :changeset, Ecto.Changeset, required: true
attr :action, :string, required: true
def security_form(assigns)
end