From 0944c887e0c00533da4ef77a765a72f71a1f9a8a Mon Sep 17 00:00:00 2001 From: Manuel Francisco Naranjo Date: Mon, 27 Jul 2015 16:35:00 -0300 Subject: [PATCH] Updating docs --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 17e8ba5..13dc0c6 100644 --- a/README.md +++ b/README.md @@ -6,16 +6,19 @@ So far only MySQL is supported as backend, but more could be added if necessary. ## Quick start -1. Add "dbview" to your INSTALLED_APPS settings like this:: +1. Add "dbview" to your INSTALLED_APPS settings like this: - INSTALLED_APPS = ( - ... - 'dbview', - ) +```python +INSTALLED_APPS = ( + ... + 'dbview', +) + +``` 2. In your models.py create classes which extend dbview.models.DbView -like this +like this: ```python