Browse Source

Update documentation

Denis K 8 years ago
parent
commit
75110a9cad
3 changed files with 43 additions and 0 deletions
  1. BIN
      docs/_static/compact_inline.png
  2. 42 0
      docs/compact_inline.rst
  3. 1 0
      docs/configuration.rst

BIN
docs/_static/compact_inline.png


+ 42 - 0
docs/compact_inline.rst

@@ -0,0 +1,42 @@
+==============
+Compact Inline
+==============
+
+
+By default Django admin interface provides two types of inlines to edit models on the same page as a
+related model – ``StackedInline`` and ``TabularInline``. ``StackedInline`` is mostly used when there are
+not so many objects. If number of models is rather big, ``TabularInline`` can help you. Unfortunately when
+related model has a lot of fields it may be not convenient to interact with them.
+To solve this problem JET has a ``CompactInline`` class built-in.
+
+.. image:: _static/compact_inline.png
+    :width: 100%
+
+
+Usage
+-----
+
+``CompactInline`` works exactly like Django built-in inlines, you need just
+to inherit ``jet.admin.CompactInline`` inline class. That's all.
+
+.. code:: python
+
+    from django.contrib import admin
+    from people.models import County, State, City
+    from jet.admin import CompactInline
+
+
+    class StateCountiesInline(admin.TabularInline):
+        model = County
+        extra = 1
+        show_change_link = True
+
+
+    class StateCitiesInline(CompactInline):
+        model = City
+        extra = 1
+        show_change_link = True
+
+
+    class StateAdmin(admin.ModelAdmin):
+        inlines = (StateCountiesInline, StateCitiesInline)

+ 1 - 0
docs/configuration.rst

@@ -9,3 +9,4 @@ Contents:
 
    config_file
    autocomplete
+   compact_inline