2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-12 01:55:39 +00:00

Added a bunch of developer documentation

This commit is contained in:
Oliver Walters
2019-05-05 20:13:59 +10:00
parent a4be5964b8
commit c6a7d1c243
12 changed files with 234 additions and 35 deletions

14
docs/tables.rst Normal file
View File

@ -0,0 +1,14 @@
Table Management
================
.. toctree::
:titlesonly:
:maxdepth: 2
:caption: Tables
:hidden:
InvenTree uses `Bootstrap Table <https://bootstrap-table.com/>`_ to manage tabulated data in the web front-end. The ability to tabulate data from read via an AJAX request allows tables to be updated on-the-fly (without a full page reload).
Bootstrap Table also provides integrated tools for table searching, filtering, and advanced rendering.
Frontend code for table functionality can be found at ``InvenTree/static/script/inventree/tables.js``.