Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #49

Merged
merged 2 commits into from
Apr 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
<h1 align=center>Django ChoiceField</h1>

<p align=left>
<p align=center>
<a href="https://github.com/flaeppe/django-choicefield/actions?query=workflow%3ACI+branch%3Amain"><img src="https://github.com/flaeppe/django-choicefield/actions/workflows/ci.yaml/badge.svg?branch=main" alt="CI workflow Status"></a>
<a href="https://codecov.io/gh/flaeppe/django-choicefield" > <img src="https://codecov.io/gh/flaeppe/django-choicefield/branch/main/graph/badge.svg?token=SV7YKU958R"/> </a>
<a href="https://pypi.org/project/django-choicefield/"><img src="https://img.shields.io/pypi/v/django-choicefield.svg?color=informational&label=PyPI" alt="PyPI Package"></a>
<a href="https://pypi.org/project/django-choicefield/"><img src="https://img.shields.io/pypi/pyversions/django-choicefield.svg?color=informational&label=Python" alt="Python versions"></a>
</p>

A Django model field that casts enum values to its enum type. Supports all enum types
shipped with Django and Python 3 native enum types.

---

### Motivation

Have you also felt annoyed by having to convert
Expand Down
Loading