We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6c26add + ddc9fda commit 0e14e4dCopy full SHA for 0e14e4d
docs/index.md
@@ -16,17 +16,27 @@ Install the development version:
16
17
pip install pinax-blog
18
19
-Add `pinax-blog` to your `INSTALLED_APPS` setting:
+Add `pinax-blog` to your `INSTALLED_APPS` setting. Also add the `sites` framework
20
+if you don't already use it:
21
22
INSTALLED_APPS = (
23
# ...
24
+ "django.contrib.sites"
25
"pinax.blog",
26
27
)
28
29
+ SITE_ID = 1
30
+
31
+Run the migration `python manage.py migrate`
32
33
Add entry to your `urls.py`:
34
- url(r"^blog/", include("pinax.blog.urls", namespace="pinax_blog"))
35
+ urlpatterns = [
36
+ # ...
37
+ url(r"^blog/", include("pinax.blog.urls", namespace="pinax_blog")),
38
39
+ ]
40
41
42
## Dependencies
0 commit comments