diff --git a/docs/index.txt b/docs/index.txt index 9281c1d..c9640ee 100644 --- a/docs/index.txt +++ b/docs/index.txt @@ -38,7 +38,11 @@ that are required. A minimal integration can work like this: 'avatar', ) -2. Add the avatar urls to the end of your root urlconf. Your urlconf +2. Update your database:: + + python manage.py syncdb + +3. Add the avatar urls to the end of your root urlconf. Your urlconf will look something like:: urlpatterns = patterns('', @@ -46,12 +50,12 @@ that are required. A minimal integration can work like this: (r'^avatar/', include('avatar.urls')), ) -3. Somewhere in your template navigation scheme, link to the change avatar +4. Somewhere in your template navigation scheme, link to the change avatar page:: Change your avatar -4. Wherever you want to display an avatar for a user, first load the avatar +5. Wherever you want to display an avatar for a user, first load the avatar template tags:: {% load avatar_tags %}