Generate HTML over an existing context and schema

Helo guys, I already generated a Context with a schema before, but didn’t generate the HTML using this command:

mix phx.gen.html Stock Product products name:string description:string value:float quantity:integer

Now i want to generate the HTML (Views, Controller and Templates) based on the context and schema that I already generated. How can i do this ?

You can add --no-context and --no-schema flags to mix phx.gen.html.

As told by …

$ mix help phx.gen.html