Brandon Taylor
3a3392a7a1
Added additional models for non sortable parent with sortable inlines.
2014-09-21 15:15:40 -04:00
Brandon Taylor
234a0118db
Added NonSortableCategory and SortableCategoryWidget model classes.
...
Wired up NonSortableCategory and inline sortable SortableCategoryWidget to sample project admin.
2014-09-21 15:14:03 -04:00
Brandon Taylor
f33f5e90ed
Refactored do_sorting_view to get start_index default value from len(indexes) rather than duplicate the line and set to 0.
...
Added NonSortableParentAdmin class to enable sorting URLs and JavaScript on models that do not inherit from Sortable.
Removed unused 'ordering' property on SortableAdmin.
Changed assignment of sorting_filters to use getattr, enabling NonSortableParentAdmin to inherit from SortableAdminBase.
Moved template properties to SortableAdminBase.
2014-09-21 15:12:30 -04:00
Brandon Taylor
b880018f71
Added css target class to proerly display the 'move' cursor for sortable stacked inlines.
2014-09-21 14:31:46 -04:00
Brandon Taylor
d799a91e54
Merge pull request #91 from jaap3/patch-1
...
Removed a stray "TEST 2"
2014-09-19 07:50:50 -04:00
Jaap Roes
0e993c524c
Removed a stray "TEST 2"
2014-09-19 13:30:46 +02:00
Brandon Taylor
da20ef0b53
Removed south entirely from project.
2014-09-12 09:35:50 -04:00
Brandon Taylor
0edc62ebe5
Removed minor version spec of Python.
2014-09-12 09:24:35 -04:00
Brandon Taylor
922d289025
Updated python versions in excludes.
2014-09-12 09:21:58 -04:00
Brandon Taylor
82e683756e
Fixed string formatting for Python 2.6 in tests.
...
Updated Travis Python 2.7 version to 2.7.6.
More excludes.
2014-09-12 09:20:36 -04:00
Brandon Taylor
fcb7fd132d
More excludes.
2014-09-12 09:14:28 -04:00
Brandon Taylor
b86bbec630
More Travis config changes to matrix.
2014-09-12 09:09:31 -04:00
Brandon Taylor
99d53d06b9
Added south install back.
2014-09-12 08:58:46 -04:00
Brandon Taylor
354f7db569
More travis adjustments.
2014-09-12 08:56:10 -04:00
Brandon Taylor
4c2925e1f0
Added SOUTH_TESTS_MIGRATE to settings.
2014-09-12 08:51:36 -04:00
Brandon Taylor
6953be4fd8
Fixed YAML parsing errors.
2014-09-12 08:47:48 -04:00
Brandon Taylor
18735017db
Updated Travis config matrix.
2014-09-12 08:45:19 -04:00
Brandon Taylor
1a4930a29f
Merge branch 'master' of github.com:iambrandontaylor/django-admin-sortable
2014-09-12 08:14:51 -04:00
Brandon Taylor
a5363c94cb
Updated Travis config to test against multiple versions of Python and Django.
2014-09-12 08:14:30 -04:00
Brandon Taylor
a23937033c
Merge pull request #90 from jaap3/patch-1
...
Fix formatting string for Python 2.6
2014-09-12 08:13:29 -04:00
Jaap Roes
483e834537
Fix formatting string for Python 2.6
2014-09-12 11:04:44 +02:00
Brandon Taylor
ba552549c2
Fixed south version.
2014-09-06 20:42:53 -04:00
Brandon Taylor
fa401c3dc3
Removed --use-mirrors.
2014-09-06 20:42:28 -04:00
Brandon Taylor
04466602f7
Fixed requirements for Python 2.7 based project.
2014-09-06 20:39:33 -04:00
Brandon Taylor
1a581e3af8
Merge branch 'master' of github.com:iambrandontaylor/django-admin-sortable
2014-09-06 20:37:04 -04:00
Brandon Taylor
dd30e39674
Added sample Project using Python 3.4 and Django 1.7.
2014-09-06 20:36:51 -04:00
Brandon Taylor
e274dad374
Update README.md
...
Added build status
2014-09-06 19:30:21 -04:00
Brandon Taylor
90f3e13d94
Merge branch 'master' of github.com:iambrandontaylor/django-admin-sortable
2014-09-06 15:41:34 -04:00
Brandon Taylor
2157f2d7ca
Fixed table formatting.
2014-09-06 15:41:24 -04:00
Brandon Taylor
c312e975a8
Update README.md
2014-09-06 15:37:54 -04:00
Brandon Taylor
cd100a7532
Change table.
2014-09-06 15:35:37 -04:00
Brandon Taylor
4c1ffdebea
Version bump to 1.7.3.
...
Updated readme to document get_next/previous
2014-09-06 15:32:54 -04:00
Brandon Taylor
3cfba9164a
Added cd to Travis script.
2014-09-06 15:15:14 -04:00
Brandon Taylor
31780a672a
Updated requirements and Travis config.
2014-09-06 15:13:53 -04:00
Brandon Taylor
8b9cf718c0
Added Travis CI config.
2014-09-06 15:11:52 -04:00
Brandon Taylor
8df54f43e1
Added basic test of get_next/previous.
2014-09-06 14:53:11 -04:00
Brandon Taylor
25ef724e15
Fixed missing kwarg in calls to get_next/previous.
2014-09-06 14:52:09 -04:00
Brandon Taylor
e08077a0b2
PEP8 cleanup.
2014-09-06 14:51:26 -04:00
Brandon Taylor
27686d6f79
Removed unused variable.
2014-09-06 12:38:00 -04:00
Brandon Taylor
1a96bb0d21
Added option to disable sortable foreign key filtering.
2014-09-05 23:07:16 -04:00
Brandon Taylor
fee0ba81b0
Moved logic to set sortable_foreign_key property to Sortable instead of SortableAdmin.
...
Added instance methods to get next or previous instance, optionally filtered by a sortable foreign key field.
2014-09-05 23:02:29 -04:00
Brandon Taylor
361305d6a5
Updated Readme.
...
Version bump to 1.7.2.
Merged pull request for commit 4e38d91 .
Removed version specifications from requirements.txt in sample project.
2014-09-05 16:37:45 -04:00
Brandon Taylor
4e38d91138
Merge pull request #88 from fusionbox/change-view-args
...
ModelAdmin.change_view takes a form_url kwarg
2014-09-05 16:31:10 -04:00
Scott Clark
41fa948bb2
ModelAdmin.change_view takes a form_url kwarg
...
This allows change_view super calls to AdminSortable and
ModelAdmin to play nice with each other.
2014-09-04 14:07:55 -06:00
Brandon Taylor
d3b780593e
Update usage.rst
2014-08-25 09:28:21 -04:00
Brandon Taylor
88bdb3816f
Update usage.rst
2014-08-25 09:27:34 -04:00
Brandon Taylor
ac7e03c611
Update usage.rst
2014-08-25 09:26:08 -04:00
Brandon Taylor
76f3541c0d
Update usage.rst
2014-08-25 09:25:47 -04:00
Brandon Taylor
6c04e3b8df
Update usage.rst
2014-08-25 09:25:19 -04:00
Brandon Taylor
63e123e4fc
Update usage.rst
2014-08-25 09:24:22 -04:00