autoform
autoform copied to clipboard
🤖📝 AutoForm is the simplest way to automatically generate fast, beautiful and standards/WCAG compliant HTML forms based on an Ecto Schema in a Phoenix Web Application to *significantly* speed up Web...
 # Todo + [x] update version of fields in autoform
creates the autoform_render function #27
Rename `render_autoform` and `custom_render_autoform` functions so we have a more consistent naming convention. @nelsonic makes a good point [here](https://github.com/dwyl/autoform/pull/22) about naming convention.
We're using the default `changeset` function to determine which fields are given a class of 'required'. This needs to be changed to take into account the changeset passed in instead/as...
Hey, I am graphic designer and my motivation is make my portfolio better by support open-source projects. I realize that your project has no logo design yet. If you interested...
We're currently excluding the id and timestamps in the schema from displaying in the form. It would also be useful to allow users to pass a list of other fields...
We can get a schema's associations using `.__schema__(:associations)` We can then use that to load all the available options and display them on a form. Initially, for Club Soda, we...
We need to publish version 0.1 of this package on hex.pm so we can use it in our deployed project. - [x] Add usage docs to README - [ ]...
http://blog.plataformatec.com.br/2018/10/a-sneak-peek-at-ecto-3-0-breaking-changes  @Danwhy not something to "worry" about in the _current_ iteration of Autoform. But worth looking into next week. (_probably won't "affect" us, but worth reading_)
We currently have a number of input types working: Based on Ecto Types: - `:string` - text input - `:integer`, `:float`, `:decimal` - number input - `:boolean` - checkbox -...