diff --git a/README.md b/README.md index 0d35add..44ba413 100644 --- a/README.md +++ b/README.md @@ -9,12 +9,12 @@ A modular plugin system for django apps. There are 4 kinds of hooks: -* TemplateHook: Third-party apps will be able to insert their own code (text/html) into a template. +* TemplateHook: Third-party apps will be able to add data in a template. * ModelHook: Third-party apps will be able to add fields and methods to a model. -* FormHook: Third-party apps will be able to insert Forms in a view. -* ~~ViewHook~~: This is deprecated in favor of FormHook +* FormHook: Third-party apps will be able to add forms in a view. * SignalHook: Connect or emit a signal by its name/id. This is the same as Django signals except that they don't need to be pre-defined. +* ~~ViewHook~~: This is deprecated in favor of FormHook ## Why? diff --git a/docs/index.rst b/docs/index.rst index dcab749..c70770e 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -10,10 +10,9 @@ A modular plugin system for django apps. There are 4 kinds of hooks: -* TemplateHook: Third-party apps will be able to insert their own code (text/html) into a template. +* TemplateHook: Third-party apps will be able to add data in a template. * ModelHook: Third-party apps will be able to add fields and methods to a model. -* FormHook: Third-party apps will be able to insert Forms in a view. -* ViewHook: This is deprecated in favor of FormHook +* FormHook: Third-party apps will be able to add forms to a view. * SignalHook: Connect or emit a signal by its name/id. This is the same as Django signals except that they don't need to be pre-defined.