Skip to content

Support for relational custom field conditions #16

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

Merged
merged 7 commits into from
Dec 20, 2021
Merged
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ build/
dist/
django_user_defined_fields.egg-info
example/database.db
.idea/
poetry.lock
1 change: 0 additions & 1 deletion MANIFEST.in

This file was deleted.

12 changes: 0 additions & 12 deletions Pipfile

This file was deleted.

271 changes: 0 additions & 271 deletions Pipfile.lock

This file was deleted.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# django-user-defined-fields

[![PyPI version](https://badge.fury.io/py/django-user-defined-fields.svg)](https://badge.fury.io/py/django-user-defined-fields)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

Django Used Defined Fields is a simple way to allow your users to add extra fields to your models, based on JSONField.

Expand All @@ -26,7 +27,7 @@ class Example(models.Model):
```

## Tests
Run tests in example directory with `python manage.py test testapp`
Run tests in example directory with `python manage.py test library`


# Settings
Expand Down
1 change: 1 addition & 0 deletions example/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
db.sqlite3
13 changes: 0 additions & 13 deletions example/Pipfile

This file was deleted.

Loading