From 9935f65ca0c59d302cf91acbc970f1a2ec6fa18a Mon Sep 17 00:00:00 2001 From: Brandon Taylor Date: Sun, 21 Sep 2014 19:35:21 -0400 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 193c5be..4eb5fd3 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ Inlines may be drag-and-dropped into any order directly from the change form. To add sorting to a model, your model needs to inherit from `Sortable` and have an inner Meta class that inherits from `Sortable.Meta` - #models.py + # models.py from adminsortable.models import Sortable class MySortableClass(Sortable): @@ -96,7 +96,7 @@ A common use case is to have child objects that are sortable relative to a paren def __unicode__(self): return self.title - # admin + # admin.py from adminsortable.admin import SortableAdmin from your_app.models import Category, Project