Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 846 Bytes

File metadata and controls

16 lines (11 loc) · 846 Bytes

Django Form Dynamic Todo:

  • Check if the forms file contains from django import forms and not write it again.
  • Check if the forms file contains from .models import [any value], and if not, add the line with the model name replacing [any value].
  • If the file already contains that line but imports a different model, append the current model name to the existing line.
  • Check whether the forms file contains a form class for the same model, show a warning, and ask in the terminal whether to perform a replacement or not.
  • Change the generation of HTML form interfaces from --v or --view to -page or -p.
  • Make the -view or --v argument in the terminal consistent.

New Tasks:

  • Ensure the interfaces are automatically styled using Tailwind CSS.

  • Change the name of project