diff --git a/Readme.md b/Readme.md index 8d56d6c..9be1914 100644 --- a/Readme.md +++ b/Readme.md @@ -42,4 +42,44 @@ go to `http://localhost:8000` to enter the inventory management system directly inventories as well as a "Default Workshop" to be able to navigate everything. 2. For editing parts the Django admin interface is used, so edit-links will only appear if the currently logged in user is a `staff` user (set the checkbox - in the admin area). \ No newline at end of file + in the admin area). + +### Screenshots + +#### Overview Page + +here we have a layer of containers, you may nest multiple containers into each +other, for example to define a cupboard which contains multiple boxes of parts, +or multiple rooms in your workshop that contain cupboards, etc. + +![Overview](docs/example_overview.png) + +#### Box View + +This is a container that contains parts. You may define your layouts (number of +compartments, number of items per compartment and layout of compartments +themselves) all by yourself in the admin backend, by default the database comes +with an assortment of Ikea and Raaco sorter boxes. + +![Box view 1](docs/example_box.png) + +![Box view 2](docs/example_box2.png) + +The Overview and Box views are designed to be used on a touch-screen and the HTML, +CSS and Javascript are designed to work on older Hardware (Apple iOS 9 has been +tested at lowest, so this works from iPad 2 up to the newest pro). + +#### Part detail view + +This is the detail view of a part, this is useful to find all parts by manufacturer +or distributor, or when a part has multiple datasheets. + +![Detail view](docs/example_detail.png) + +#### Part edit view + +Editing is done on the standard Django admin interface, so all users that have no +*staff* privileges only can view all parts, all with *staff* privileges have access +to the django admin backend and can edit parts too. + +![Edit view](docs/example_edit.png) \ No newline at end of file diff --git a/docs/example_box.png b/docs/example_box.png new file mode 100644 index 0000000..9cb9091 Binary files /dev/null and b/docs/example_box.png differ diff --git a/docs/example_box2.png b/docs/example_box2.png new file mode 100644 index 0000000..56b37c9 Binary files /dev/null and b/docs/example_box2.png differ diff --git a/docs/example_detail.png b/docs/example_detail.png new file mode 100644 index 0000000..d28d0e0 Binary files /dev/null and b/docs/example_detail.png differ diff --git a/docs/example_edit.png b/docs/example_edit.png new file mode 100644 index 0000000..6e2b010 Binary files /dev/null and b/docs/example_edit.png differ diff --git a/docs/example_overview.png b/docs/example_overview.png new file mode 100644 index 0000000..21e4137 Binary files /dev/null and b/docs/example_overview.png differ