Skip to content

Commit

Permalink
fix #142
Browse files Browse the repository at this point in the history
  • Loading branch information
bckohan committed Nov 21, 2024
1 parent 850e2d4 commit 9c3fb9b
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 0 deletions.
3 changes: 3 additions & 0 deletions doc/source/_static/showcase.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
table th:first-child, table td:first-child {
white-space: nowrap;
}
1 change: 1 addition & 0 deletions doc/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ v3.0.0 (202X-XX-XX)

* Fixed `Typer-style interface throws an assertion when no callback is present on a subgroup. <https://github.com/django-commons/django-typer/issues/145>`_
* Fixed `supressed_base_arguments are still present in the Context <https://github.com/django-commons/django-typer/issues/143>`_
* Implemented `Add showcase of commands using django-typer to docs <https://github.com/django-commons/django-typer/issues/142>`_
* Implemented `Add a @finalize decorator for functions to collect/operate on subroutine results. <https://github.com/django-commons/django-typer/issues/140>`_
* Fixed `Remove management imports in django_typer/__init__.py <https://github.com/django-commons/django-typer/issues/95>`_

Expand Down
1 change: 1 addition & 0 deletions doc/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -193,5 +193,6 @@ the self argument in your commands.**
extensions
shell_completion
howto
showcase
reference
changelog
33 changes: 33 additions & 0 deletions doc/source/showcase.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
.. include:: ./refs.rst

.. raw:: html

<link rel="stylesheet" type="text/css" href="_static/showcase.css">

========
Showcase
========

These packages provide management commands that have been implemented using django-typer_. If you
would like us to showcase a package,
`please submit a PR <https://github.com/django-commons/django-typer>`_.

.. note::

The following packages are not maintained by the django-typer_ project. If you have any issues
with the packages, please contact the package maintainers.

----------------

.. list-table::
:header-rows: 1

* - Package
- Description
* - `django-tailwind-cli <https://pypi.org/project/django-tailwind-cli>`_
- Django and Tailwind integration based on the prebuilt Tailwind CSS CLI.
* - `django-render-static <https://pypi.org/project/django-render-static>`_
- Use Django's template engines to render static files at deployment or package time. Includes
transpilers for extending Django's url reversal and enums to JavaScript.
* - `django-routines <https://pypi.org/project/django-routines>`_
- Define named sequences of management commands in Django settings files for batched execution.

0 comments on commit 9c3fb9b

Please sign in to comment.