Skip to content

Convenciones Nombres

nmalbran edited this page Jan 3, 2012 · 5 revisions

Convenciones nombres urls, vistas y clases

  1. Create:

    • Template: <model>_form.html
    • Vista: <Model>CreateView o <model>_create
    • Url: name=<model>_create
  2. Retrieve:

    • Template: <model>_detail.html o <model>_list.html
    • Vista: <Model>DetailView o <model>_detail o <Model>ListView o <model>_list
    • Url: name=<model>_list o name=<model>_detail
  3. Update:

    • Template: <model>_form.html
    • Vista: <Model>UpdateView o <model>_update
    • Url: name=<model>_update
  4. Ajax:

    • Vista: async_<method>_<model>
      • Ejemplos: async_create_cadidate, async_delete_category
Clone this wiki locally