Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: darklow/django-suit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2
Choose a base ref
...
head repository: ahmadiehsan/django-suit-RTL
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2
Choose a head ref
Able to merge. These branches can be automatically merged.

Commits on Sep 30, 2018

  1. add rtl support

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    0a99c86 View commit details
  2. update readme

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    e95d438 View commit details
  3. django-suit-RTL-preview

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    21ef034 View commit details
  4. Copy the full SHA
    949d3fd View commit details
  5. Copy the full SHA
    2104731 View commit details
  6. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    af48c48 View commit details
  7. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    2398dbc View commit details
  8. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    f7064a2 View commit details
  9. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    ae887d0 View commit details
  10. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    db4550a View commit details
  11. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    b9807a3 View commit details
  12. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    aadcfa8 View commit details
  13. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    a687eb2 View commit details
  14. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    47f9b86 View commit details
  15. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    3437e13 View commit details
  16. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    94f6893 View commit details
  17. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    ec324f2 View commit details
  18. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    f78157b View commit details
  19. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    8528a88 View commit details
  20. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    b01afb8 View commit details
  21. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    6fa2322 View commit details
  22. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    e0cc868 View commit details
  23. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    72c3d4b View commit details
  24. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    a978840 View commit details
  25. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    9f4aaef View commit details
  26. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    808f8e6 View commit details
  27. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    f1c42fe View commit details
  28. Update README.rst

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    a71654c View commit details
  29. remove footer

    ahmadiehsan authored Sep 30, 2018
    Copy the full SHA
    b92d8d1 View commit details

Commits on Nov 30, 2018

  1. Copy the full SHA
    675ffeb View commit details
  2. Copy the full SHA
    14747a2 View commit details

Commits on Jan 31, 2019

  1. Copy the full SHA
    b171e67 View commit details
Showing with 8,784 additions and 2,991 deletions.
  1. +29 −37 README.rst
  2. +1 −1 suit/admin.py
  3. +8,754 −2,953 suit/static/suit/css/suit.css
66 changes: 29 additions & 37 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,68 +1,60 @@
===========
Django Suit
Django Suit v2 RTL
===========

**Modern theme for Django admin interface**.

Django Suit is alternative theme/skin/extension for `Django <http://www.djangoproject.com>`_ administration interface.

* Project home: http://djangosuit.com/
* Live demo v1: http://djangosuit.com/admin/
* Live demo v2.0 alpha 1: http://v2.djangosuit.com/admin/
* Live demo v2.0 alpha 1 LTR: http://v2.djangosuit.com/admin/


License
Install
=======

* Django Suit is licensed under `Creative Commons Attribution-NonCommercial 3.0 <http://creativecommons.org/licenses/by-nc/3.0/>`_ license.
* Licence and pricing: http://djangosuit.com/pricing/


Docs & Support
==============

* Documentation v2: http://django-suit.readthedocs.org/en/v2/
* Documentation v1: http://django-suit.readthedocs.org/en/latest/
* Support: http://djangosuit.com/support/
* Follow `on Twitter <http://twitter.com/DjangoSuit>`_ to get latest news
* 1- Install Django Suit v2-dev RTL using pip or easy_install:

::

Changelog
=========
pip install -e git+https://github.com/AhmadiEhsan/django-suit-RTL#egg=django_suit

**Note:** Django Suit v2.0 is in active development and not yet ready for production use.
* 2- Create SuitConfig class and add it to the INSTALLED_APPS before django.contrib.admin app:

Read more here: Todo: Add issue refernce
::

# my_project_app/apps.py
from suit.apps import DjangoSuitConfig
class SuitConfig(DjangoSuitConfig):
layout = 'horizontal'

Contributing
============
::

See `Contributing documentation <http://django-suit.readthedocs.org/en/v2/contribute.html>`_
INSTALLED_APPS = (
...
'my_project_app.apps.SuitConfig',
'django.contrib.admin',
)


Build Status
============

Django Suit uses Travis CI to perform tests on different Django and Python versions.
License
=======

Tested using Python: 2.7-3.4 and PyPy. Django: 1.9+ and Django Suit v2.0 alpha:
* Django Suit is licensed under `Creative Commons Attribution-NonCommercial 3.0 <http://creativecommons.org/licenses/by-nc/3.0/>`_ license.
* Licence and pricing: http://djangosuit.com/pricing/

.. |v2| image:: https://travis-ci.org/darklow/django-suit.png?branch=v2
:alt: Build Status - v2 branch
:target: http://travis-ci.org/darklow/django-suit

.. |develop| image:: https://travis-ci.org/darklow/django-suit.png?branch=develop
:alt: Build Status - develop branch
:target: http://travis-ci.org/darklow/django-suit
Docs & Support
==============

|v2| |develop|
* Documentation v2 LTR: http://django-suit.readthedocs.org/en/v2/
* Support: http://djangosuit.com/support/
* Follow `on Twitter <http://twitter.com/DjangoSuit>`_ to get latest news


Preview
=======


.. image:: https://cloud.githubusercontent.com/assets/445304/12699480/3eee898e-c7c5-11e5-931c-ba1b0cabdecb.png
:alt: Django Suit Preview
:target: http://v2.djangosuit.com/admin/
.. image:: http://s9.picofile.com/file/8338619776/django_suit_RTL_preview.png
2 changes: 1 addition & 1 deletion suit/admin.py
Original file line number Diff line number Diff line change
@@ -99,4 +99,4 @@ def get_queryset(self, request):
if isinstance(field.remote_field, models.ManyToOneRel):
select_related.append(field_name)

return qs.select_related(*select_related)
return qs.select_related(*select_related)
Loading