diff options
author | Tomasz Mieszkowski <tomasz.mieszkowski@ext.allegro.pl> | 2014-08-28 08:54:15 +0200 |
---|---|---|
committer | Tomasz Mieszkowski <tomasz.mieszkowski@ext.allegro.pl> | 2014-08-28 08:54:15 +0200 |
commit | 60c073a6ed451cf91d9877a3305407756b9ffdce (patch) | |
tree | 955542ec282745e31d78d1b2b9515d8cebe67e78 /doc/tile__listing.rst | |
download | tipboard-1.4.0.tar.gz tipboard-1.4.0.tar.bz2 tipboard-1.4.0.zip |
Tipboard got open-sourced!1.4.0
Diffstat (limited to 'doc/tile__listing.rst')
-rw-r--r-- | doc/tile__listing.rst | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/doc/tile__listing.rst b/doc/tile__listing.rst new file mode 100644 index 0000000..dbe2516 --- /dev/null +++ b/doc/tile__listing.rst @@ -0,0 +1,34 @@ +=========== +``listing`` +=========== + +.. image:: img/smaller/listing.png + +**Description** + +Very simple tile for displaying list of entries (up to seven) of arbitrary +content. For more sophisticated needs there is a ``fancy_listing`` tile. + +**Content** + +:: + + data = {"items": ["<entry1>", "<entry2>", ..., "<entry7>"]} + +where: + +.. describe:: items + + List of items (entries) to display. + +Example:: + + curl http://localhost:7272/api/v0.1/<api_key>/push + -X POST + -d "tile=listing" + -d "key=<tile_id>" + -d "data={"items": ["Leader: 5", "Product Owner: 0", "Scrum Master: 3", "Developer: 0"]}" + +**Configuration** + +This tile does not offer any configuration options. |