Skip to content

Commit

Permalink
let there be colour
Browse files Browse the repository at this point in the history
... and corrected indentation as a bonus
  • Loading branch information
bashu authored Feb 21, 2018
1 parent 9dd9b36 commit 67e2c5b
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ This app allows you to keep track of every action taken by your users.

2. Add 'easyaudit' to your `INSTALLED_APPS` like this:

```
INSTALLED_APPS = [
...
'easyaudit',
]
```
```python
INSTALLED_APPS = [
...
'easyaudit',
]
```

3. Add Easy Audit's middleware to your `MIDDLEWARE` (or `MIDDLEWARE_CLASSES`) setting like this:

```
MIDDLEWARE = (
...
'easyaudit.middleware.easyaudit.EasyAuditMiddleware',
)
```
```python
MIDDLEWARE = (
...
'easyaudit.middleware.easyaudit.EasyAuditMiddleware',
)
```

4. Run `python manage.py migrate easyaudit` to create the app's models.

Expand Down Expand Up @@ -88,4 +88,4 @@ begins logging everything right away, without you having to inject code anywhere
## Contact

Find me on Twitter at [@soynatan](https://twitter.com/soynatan),
or send me an email to [natancalzolari@gmail.com](mailto:natancalzolari@gmail.com).
or send me an email to [natancalzolari@gmail.com](mailto:natancalzolari@gmail.com).

0 comments on commit 67e2c5b

Please sign in to comment.