Is there any adequate scaffolding for Django? (A la Ruby on Rails)

前端 未结 6 1517
遇见更好的自我
遇见更好的自我 2021-01-31 17:34

Is there any adequate scaffolding for Django?

It may be in the newly released 1.3 version, but I haven\'t found it yet.

6条回答
  •  逝去的感伤
    2021-01-31 17:48

    You may check django-addview. It is meant to do boring, mundane steps needed to add new view automatically with nice ncurses GUI. What it does for you:

    • Extend CBV or write function
    • Fill parameters of CBV
    • Creates template in given location
    • Edits urls.py for you
    • Cares about all imports

    Full disclosure: I wrote it.

提交回复
热议问题