{"id":16603383,"url":"https://github.com/dbrgn/django-tabination","last_synced_at":"2025-07-07T20:14:40.577Z","repository":{"id":2920263,"uuid":"3930527","full_name":"dbrgn/django-tabination","owner":"dbrgn","description":"A lightweight library that enables you to easily build your own tab navigation based on class based views.","archived":false,"fork":false,"pushed_at":"2021-03-29T17:37:11.000Z","size":85,"stargazers_count":21,"open_issues_count":3,"forks_count":1,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-01-12T10:42:13.253Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dbrgn.png","metadata":{"files":{"readme":"README.rst","changelog":"CHANGELOG.rst","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-04-04T16:07:57.000Z","updated_at":"2020-02-26T06:57:17.000Z","dependencies_parsed_at":"2022-09-12T15:51:16.616Z","dependency_job_id":null,"html_url":"https://github.com/dbrgn/django-tabination","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbrgn%2Fdjango-tabination","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbrgn%2Fdjango-tabination/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbrgn%2Fdjango-tabination/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dbrgn%2Fdjango-tabination/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dbrgn","download_url":"https://codeload.github.com/dbrgn/django-tabination/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234538897,"owners_count":18849154,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-12T00:49:55.655Z","updated_at":"2025-01-18T17:21:40.215Z","avatar_url":"https://github.com/dbrgn.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"django-tabination\n=================\n\n.. image:: https://secure.travis-ci.org/dbrgn/django-tabination.png?branch=master\n    :alt: Build status\n    :target: http://travis-ci.org/dbrgn/django-tabination\n\n.. image:: https://coveralls.io/repos/dbrgn/django-tabination/badge.png?branch=master\n    :alt: Coverage\n    :target: https://coveralls.io/r/dbrgn/django-tabination\n\n.. image:: https://pypip.in/d/django-tabination/badge.png\n    :alt: PyPI download stats\n    :target: https://crate.io/packages/django-tabination\n\n*django-tabination* is a lightweight (~70 SLOC) Django 1.4+ library that enables\nyou to easily build your own tab navigation based on class based views.\n\nIt supports code based creation of tabs directly in your views, conditional\ndisplaying/hiding of a tab, translation of the tab labels, tab sorting,\nmulti-level tab navigations and more.\n\n- Supported Django versions: 1.4, 1.5, 1.6\n- Supported Python versions: 2.6, 2.7, 3.3, 3.4, pypy2\n\n\nDocs\n----\n\nThe docs can be found at http://django-tabination.readthedocs.org/.\n\n\nInstalling\n----------\n\nYou can install *django-tabination* directly from pypi using pip::\n\n    $ pip install django-tabination\n\nCurrently there is no further configuration needed. For more information about\nsetup and usage, please refer to `the docs`_.\n\n\nCoding Guidelines\n-----------------\n\n`PEP8 \u003chttp://www.python.org/dev/peps/pep-0008/\u003e`__ via `flake8\n\u003chttps://pypi.python.org/pypi/flake8\u003e`_ with max-line-width set to 99 and\nE126-E128 ignored.\n\n\nTesting\n-------\n\nTesting is implemented using tox_ and pytest_. Violations of the coding\nguidelines will be counted as errors.\n\nThe easiest way to run the tests is by simply running ``tox``::\n\n    $ pip install tox\n    $ tox\n\nThis will run all tests in different virtualenvs with different configuration.\nCurrently there are around 6 different tox environments. They can be listed\nwith the ``-l`` switch::\n\n    $ tox -l\n    py26-django14\n    py26-django15\n    py27-django14\n    py27-django15\n    py34-django16\n    pypy-django14\n    pypy-django15\n\nTo run the tests only in specific environments, use the ``-e`` switch::\n\n    $ tox -e py27-django14,py26-django15\n\n\nVersioning\n----------\n\n*django-tabination* uses `Semantic Versioning`_ 2.0.0. See ``CHANGELOG.rst``\nfor list of changes.\n\n\nLicense\n-------\n\nCopyright 2012 - 2014 Danilo Bargen (http://dbrgn.ch/) and contributors.\n\nThis program is free software: you can redistribute it and/or modify it under\nthe terms of the GNU Lesser General Public License as published by the Free\nSoftware Foundation, either version 3 of the License, or any later version.\n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License along\nwith this program. If not, see http://www.gnu.org/licenses/lgpl.html.\n\n\n.. _the docs: http://django-tabination.readthedocs.org/en/latest/installation.html\n.. _semantic versioning: http://semver.org/\n.. _tox: http://tox.readthedocs.org/\n.. _pytest: http://pytest.org/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdbrgn%2Fdjango-tabination","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdbrgn%2Fdjango-tabination","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdbrgn%2Fdjango-tabination/lists"}