Merge pull request #126 from ekinertac/master

Syntax Highlight on README.md
master
Brandon Taylor 2016-01-28 09:55:52 -05:00
commit bb84c6e2c8
1 changed files with 182 additions and 147 deletions

329
README.md
View File

@ -81,100 +81,106 @@ To add "sortability" to a model, you need to inherit `SortableMixin` and at mini
Sample Model: Sample Model:
# models.py ```python
from adminsortable.models import SortableMixin # models.py
from adminsortable.models import SortableMixin
class MySortableClass(SortableMixin): class MySortableClass(SortableMixin):
class Meta: title = models.CharField(max_length=50)
verbose_name = 'My Sortable Class'
verbose_name_plural = 'My Sortable Classes' class Meta:
ordering = ['the_order'] verbose_name = 'My Sortable Class'
verbose_name_plural = 'My Sortable Classes'
ordering = ['the_order']
title = models.CharField(max_length=50)
# define the field the model should be ordered by # define the field the model should be ordered by
the_order = models.PositiveIntegerField(default=0, editable=False, db_index=True) the_order = models.PositiveIntegerField(default=0, editable=False, db_index=True)
def __unicode__(self):
return self.title
def __unicode__(self):
return self.title
```
#### Common Use Case #### Common Use Case
A common use case is to have child objects that are sortable relative to a parent. If your parent object is also sortable, here's how you would set up your models and admin options: A common use case is to have child objects that are sortable relative to a parent. If your parent object is also sortable, here's how you would set up your models and admin options:
# models.py ```python
from adminsortable.fields import SortableForeignKey # models.py
from adminsortable.fields import SortableForeignKey
class Category(SortableMixin): class Category(SortableMixin):
class Meta: class Meta:
ordering = ['category_order'] ordering = ['category_order']
verbose_name_plural = 'Categories' verbose_name_plural = 'Categories'
title = models.CharField(max_length=50) title = models.CharField(max_length=50)
# ordering field # ordering field
category_order = models.PositiveIntegerField(default=0, editable=False, db_index=True) category_order = models.PositiveIntegerField(default=0, editable=False, db_index=True)
class Project(SortableMixin): class Project(SortableMixin):
class Meta: class Meta:
ordering = ['project_order'] ordering = ['project_order']
category = SortableForeignKey(Category) category = SortableForeignKey(Category)
title = models.CharField(max_length=50) title = models.CharField(max_length=50)
# ordering field # ordering field
project_order = models.PositiveIntegerField(default=0, editable=False, db_index=True) project_order = models.PositiveIntegerField(default=0, editable=False, db_index=True)
def __unicode__(self): def __unicode__(self):
return self.title return self.title
# admin.py # admin.py
from adminsortable.admin import SortableAdmin from adminsortable.admin import SortableAdmin
from your_app.models import Category, Project from your_app.models import Category, Project
admin.site.register(Category, SortableAdmin)
admin.site.register(Project, SortableAdmin)
admin.site.register(Category, SortableAdmin)
admin.site.register(Project, SortableAdmin)
```
Sometimes you might have a parent model that is not sortable, but has child models that are. In that case define your models and admin options as such: Sometimes you might have a parent model that is not sortable, but has child models that are. In that case define your models and admin options as such:
from adminsortable.fields import SortableForeignKey ```python
from adminsortable.fields import SortableForeignKey
# models.py # models.py
class Category(models.Model): class Category(models.Model):
class Meta: class Meta:
verbose_name_plural = 'Categories' verbose_name_plural = 'Categories'
title = models.CharField(max_length=50) title = models.CharField(max_length=50)
... ...
class Project(SortableMixin): class Project(SortableMixin):
class Meta: class Meta:
ordering = ['project_order'] ordering = ['project_order']
category = SortableForeignKey(Category) category = SortableForeignKey(Category)
title = models.CharField(max_length=50) title = models.CharField(max_length=50)
# ordering field # ordering field
project_order = models.PositiveIntegerField(default=0, editable=False, db_index=True) project_order = models.PositiveIntegerField(default=0, editable=False, db_index=True)
def __unicode__(self): def __unicode__(self):
return self.title return self.title
# admin # admin
from adminsortable.admin import NonSortableParentAdmin, SortableStackedInline from adminsortable.admin import NonSortableParentAdmin, SortableStackedInline
from your_app.models import Category, Project from your_app.models import Category, Project
class ProjectInline(SortableStackedInline): class ProjectInline(SortableStackedInline):
model = Project model = Project
extra = 1 extra = 1
class CategoryAdmin(NonSortableParentAdmin): class CategoryAdmin(NonSortableParentAdmin):
inlines = [ProjectInline] inlines = [ProjectInline]
admin.site.register(Category, CategoryAdmin) admin.site.register(Category, CategoryAdmin)
```
The `NonSortableParentAdmin` class is necessary to wire up the additional URL patterns and JavaScript that Django Admin Sortable needs to make your models sortable. The child model does not have to be an inline model, it can be wired directly to Django admin and the objects will be grouped by the non-sortable foreign key when sorting. The `NonSortableParentAdmin` class is necessary to wire up the additional URL patterns and JavaScript that Django Admin Sortable needs to make your models sortable. The child model does not have to be an inline model, it can be wired directly to Django admin and the objects will be grouped by the non-sortable foreign key when sorting.
@ -184,6 +190,7 @@ If you previously used Django Admin Sortable, **DON'T PANIC** - everything will
Please note however that the `Sortable` class still contains the hard-coded `order` field, and meta inheritance requirements: Please note however that the `Sortable` class still contains the hard-coded `order` field, and meta inheritance requirements:
```python
# legacy model definition # legacy model definition
from adminsortable.models import Sortable from adminsortable.models import Sortable
@ -195,13 +202,15 @@ Please note however that the `Sortable` class still contains the hard-coded `ord
def __unicode__(self): def __unicode__(self):
return self.title return self.title
```
#### Model Instance Methods #### Model Instance Methods
Each instance of a sortable model has two convenience methods to get the next or previous instance: Each instance of a sortable model has two convenience methods to get the next or previous instance:
```python
.get_next() .get_next()
.get_previous() .get_previous()
```
By default, these methods will respect their order in relation to a `SortableForeignKey` field, if present. Meaning, that given the following data: By default, these methods will respect their order in relation to a `SortableForeignKey` field, if present. Meaning, that given the following data:
@ -218,12 +227,15 @@ By default, these methods will respect their order in relation to a `SortableFor
If you wish to override this behavior, pass in: `filter_on_sortable_fk=False`: If you wish to override this behavior, pass in: `filter_on_sortable_fk=False`:
```python
your_instance.get_next(filter_on_sortable_fk=False) your_instance.get_next(filter_on_sortable_fk=False)
```
You may also pass in additional ORM "extra_filters" as a dictionary, should you need to: You may also pass in additional ORM "extra_filters" as a dictionary, should you need to:
```python
your_instance.get_next(extra_filters={'title__icontains': 'blue'}) your_instance.get_next(extra_filters={'title__icontains': 'blue'})
```
### Adding Sorting to an existing model ### Adding Sorting to an existing model
@ -232,10 +244,12 @@ If you're adding Sorting to an existing model, it is recommended that you use [d
Example assuming a model named "Category": Example assuming a model named "Category":
def forwards(self, orm): ```python
for index, category in enumerate(orm.Category.objects.all()): def forwards(self, orm):
category.order = index + 1 for index, category in enumerate(orm.Category.objects.all()):
category.save() category.order = index + 1
category.save()
```
See: [this link](http://south.readthedocs.org/en/latest/tutorial/part3.html) for more See: [this link](http://south.readthedocs.org/en/latest/tutorial/part3.html) for more
information on South Data Migrations. information on South Data Migrations.
@ -247,52 +261,58 @@ Since schema migrations are built into Django 1.7, you don't have to use south,
### Django Admin Integration ### Django Admin Integration
To enable sorting in the admin, you need to inherit from `SortableAdmin`: To enable sorting in the admin, you need to inherit from `SortableAdmin`:
from django.contrib import admin
from myapp.models import MySortableClass
from adminsortable.admin import SortableAdmin
class MySortableAdminClass(SortableAdmin): ```python
"""Any admin options you need go here""" from django.contrib import admin
from myapp.models import MySortableClass
from adminsortable.admin import SortableAdmin
admin.site.register(MySortableClass, MySortableAdminClass) class MySortableAdminClass(SortableAdmin):
"""Any admin options you need go here"""
admin.site.register(MySortableClass, MySortableAdminClass)
```
To enable sorting on TabularInline models, you need to inherit from To enable sorting on TabularInline models, you need to inherit from
SortableTabularInline: SortableTabularInline:
from adminsortable.admin import SortableTabularInline ```python
from adminsortable.admin import SortableTabularInline
class MySortableTabularInline(SortableTabularInline):
"""Your inline options go here"""
class MySortableTabularInline(SortableTabularInline):
"""Your inline options go here"""
```
To enable sorting on StackedInline models, you need to inherit from To enable sorting on StackedInline models, you need to inherit from
SortableStackedInline: SortableStackedInline:
from adminsortable.admin import SortableStackedInline ```python
from adminsortable.admin import SortableStackedInline
class MySortableStackedInline(SortableStackedInline):
"""Your inline options go here"""
class MySortableStackedInline(SortableStackedInline):
"""Your inline options go here"""
```
There are also generic equivalents that you can inherit from: There are also generic equivalents that you can inherit from:
from adminsortable.admin import (SortableGenericTabularInline, ```python
SortableGenericStackedInline) from adminsortable.admin import (SortableGenericTabularInline,
"""Your generic inline options go here""" SortableGenericStackedInline)
"""Your generic inline options go here"""
```
If your parent model is *not* sortable, but has child inlines that are, your parent model needs to inherit from `NonSortableParentAdmin`: If your parent model is *not* sortable, but has child inlines that are, your parent model needs to inherit from `NonSortableParentAdmin`:
from adminsortable.admin import (NonSortableParentAdmin, ```python
SortableTabularInline) from adminsortable.admin import (NonSortableParentAdmin,
SortableTabularInline)
class ChildTabularInline(SortableTabularInline): class ChildTabularInline(SortableTabularInline):
model = YourModel model = YourModel
class ParentAdmin(NonSortableParentAdmin):
inlines = [ChildTabularInline]
class ParentAdmin(NonSortableParentAdmin):
inlines = [ChildTabularInline]
```
#### Overriding `queryset()` #### Overriding `queryset()`
django-admin-sortable supports custom queryset overrides on admin models django-admin-sortable supports custom queryset overrides on admin models
@ -309,25 +329,27 @@ an admin class with a custom `queryset()` override.
This is a special case, which requires a few lines of extra code to properly This is a special case, which requires a few lines of extra code to properly
determine the sortability of your model. Example: determine the sortability of your model. Example:
# add this import to your admin.py ```python
from adminsortable.utils import get_is_sortable # add this import to your admin.py
from adminsortable.utils import get_is_sortable
class ComponentInline(SortableStackedInline): class ComponentInline(SortableStackedInline):
model = Component model = Component
def queryset(self, request): def queryset(self, request):
qs = super(ComponentInline, self).queryset(request).filter( qs = super(ComponentInline, self).queryset(request).filter(
title__icontains='foo') title__icontains='foo')
# You'll need to add these lines to determine if your model # You'll need to add these lines to determine if your model
# is sortable once we hit the change_form() for the parent model. # is sortable once we hit the change_form() for the parent model.
if get_is_sortable(qs): if get_is_sortable(qs):
self.model.is_sortable = True self.model.is_sortable = True
else: else:
self.model.is_sortable = False self.model.is_sortable = False
return qs return qs
```
If you override the queryset of an inline, the number of objects present If you override the queryset of an inline, the number of objects present
may change, and adminsortable won't be able to automatically determine may change, and adminsortable won't be able to automatically determine
@ -345,21 +367,23 @@ django-admin-sortable 1.6.6 introduced a backwards-incompatible change for `sort
An example of sorting subsets would be a "Board of Directors". In this use case, you have a list of "People" objects. Some of these people are on the Board of Directors and some not, and you need to sort them independently. An example of sorting subsets would be a "Board of Directors". In this use case, you have a list of "People" objects. Some of these people are on the Board of Directors and some not, and you need to sort them independently.
class Person(Sortable): ```python
class Meta(Sortable.Meta): class Person(Sortable):
verbose_name_plural = 'People' class Meta(Sortable.Meta):
verbose_name_plural = 'People'
first_name = models.CharField(max_length=50) first_name = models.CharField(max_length=50)
last_name = models.CharField(max_length=50) last_name = models.CharField(max_length=50)
is_board_member = models.BooleanField('Board Member', default=False) is_board_member = models.BooleanField('Board Member', default=False)
sorting_filters = ( sorting_filters = (
('Board Members', {'is_board_member': True}), ('Board Members', {'is_board_member': True}),
('Non-Board Members', {'is_board_member': False}), ('Non-Board Members', {'is_board_member': False}),
) )
def __unicode__(self): def __unicode__(self):
return '{} {}'.format(self.first_name, self.last_name) return '{} {}'.format(self.first_name, self.last_name)
```
#### Extending custom templates #### Extending custom templates
By default, adminsortable's change form and change list views inherit from By default, adminsortable's change form and change list views inherit from
@ -369,13 +393,17 @@ inline models that are sortable for example.
SortableAdmin has two attributes you can override for this use case: SortableAdmin has two attributes you can override for this use case:
change_form_template_extends ```python
change_list_template_extends change_form_template_extends
change_list_template_extends
```
These attributes have default values of: These attributes have default values of:
```python
change_form_template_extends = 'admin/change_form.html' change_form_template_extends = 'admin/change_form.html'
change_list_template_extends = 'admin/change_list.html' change_list_template_extends = 'admin/change_list.html'
```
If you need to extend the inline change form templates, you'll need to select the right one, depending on your version of Django. For Django 1.5.x or below, you'll need to extend one of the following: If you need to extend the inline change form templates, you'll need to select the right one, depending on your version of Django. For Django 1.5.x or below, you'll need to extend one of the following:
@ -399,49 +427,56 @@ include the necessary JavaScript for django-admin-sortable to work. Fortunately,
this is easy to resolve, as the `CMSPlugin` class allows a change form template to be this is easy to resolve, as the `CMSPlugin` class allows a change form template to be
specified: specified:
# example plugin ```python
from cms.plugin_base import CMSPluginBase # example plugin
from cms.plugin_base import CMSPluginBase
class CMSCarouselPlugin(CMSPluginBase): class CMSCarouselPlugin(CMSPluginBase):
admin_preview = False admin_preview = False
change_form_template = 'cms/sortable-stacked-inline-change-form.html' change_form_template = 'cms/sortable-stacked-inline-change-form.html'
inlines = [SlideInline] inlines = [SlideInline]
model = Carousel model = Carousel
name = _('Carousel') name = _('Carousel')
render_template = 'carousels/carousel.html' render_template = 'carousels/carousel.html'
def render(self, context, instance, placeholder): def render(self, context, instance, placeholder):
context.update({ context.update({
'carousel': instance, 'carousel': instance,
'placeholder': placeholder 'placeholder': placeholder
}) })
return context return context
plugin_pool.register_plugin(CMSCarouselPlugin) plugin_pool.register_plugin(CMSCarouselPlugin)
```
The contents of `sortable-stacked-inline-change-form.html` at a minimum need to extend The contents of `sortable-stacked-inline-change-form.html` at a minimum need to extend
the extrahead block with: the extrahead block with:
{% extends "admin/cms/page/plugin_change_form.html" %} ```html
{% load static from staticfiles %} {% extends "admin/cms/page/plugin_change_form.html" %}
{% load static from staticfiles %}
{% block extrahead %} {% block extrahead %}
{{ block.super }} {{ block.super }}
<script type="text/javascript" src="{% static 'adminsortable/js/jquery-ui-django-admin.min.js' %}"></script> <script type="text/javascript" src="{% static 'adminsortable/js/jquery-ui-django-admin.min.js' %}"></script>
<script type="text/javascript" src="{% static 'adminsortable/js/jquery.django-csrf.js' %}"></script> <script type="text/javascript" src="{% static 'adminsortable/js/jquery.django-csrf.js' %}"></script>
<script type="text/javascript" src="{% static 'adminsortable/js/admin.sortable.stacked.inlines.js' %}"></script> <script type="text/javascript" src="{% static 'adminsortable/js/admin.sortable.stacked.inlines.js' %}"></script>
<link rel="stylesheet" type="text/css" href="{% static 'adminsortable/css/admin.sortable.inline.css' %}" /> <link rel="stylesheet" type="text/css" href="{% static 'adminsortable/css/admin.sortable.inline.css' %}" />
{% endblock extrahead %} {% endblock extrahead %}
```
Sorting within Django-CMS is really only feasible for inline models of a plugin as Django-CMS already includes sorting for plugin instances. For tabular inlines, just substitute: Sorting within Django-CMS is really only feasible for inline models of a plugin as Django-CMS already includes sorting for plugin instances. For tabular inlines, just substitute:
```html
<script src="{% static 'adminsortable/js/admin.sortable.stacked.inlines.js' %}"></script> <script src="{% static 'adminsortable/js/admin.sortable.stacked.inlines.js' %}"></script>
```
with: with:
```html
<script src="{% static 'adminsortable/js/admin.sortable.tabular.inlines.js' %}"></script> <script src="{% static 'adminsortable/js/admin.sortable.tabular.inlines.js' %}"></script>
```
### Rationale ### Rationale
Other projects have added drag-and-drop ordering to the ChangeList Other projects have added drag-and-drop ordering to the ChangeList