Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

edc-search

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

edc-search

Simple edc-search forms and view mixins for the clinicedc/edc

  • 0.3.11
  • PyPI
  • Socket score

Maintainers
1

|pypi| |actions| |coverage|

Add a slug field to models using the model mixin SearchSlugModelMixin. Specify the fields and/or properties to include in the slug in search_slug_fields:

.. code-block:: python

class TestModel(SearchSlugModelMixin, models.Model):

    search_slug_fields = ['f1', 'f2', 'f3']

    f1 = models.CharField(max_length=25, null=True)
    f2 = models.DateTimeField(null=True)
    f3 = models.IntegerField(null=True)
    f4 = models.CharField(max_length=25, null=True)

Fields in the search_slug_fields are converted to string in the slug:

.. code-block:: python

>>> obj = TestModel.objects.create(f1='run rabbit run!', f2=get_utcnow(), f3=12345)
>>> obj.slug
'run-rabbit-run!|2017-06-02 19:08:32.163520+00:00|12345'

Fields not listed are not included:

.. code-block:: python

>>> obj = TestModel.objects.create(f1='slug me', f4='don\'t slug me')
>>> obj.slug
'slug-me||'

Null fields are converted to '':

.. code-block:: python

>>> obj = TestModel.objects.create()
>>> obj.slug
'||'

You can use dotted syntax:

.. code-block:: python

class TestModel(SearchSlugModelMixin, models.Model):

    search_slug_fields = ['f1', 'name.first', 'name.last']

    f1 = models.CharField(max_length=25, null=True)

    def name(self):
        return FullName(first='Gore', last='Vidal')

>>> obj = TestModel.objects.create()
>>> obj.slug
'|Gore|Vidal'

.. |pypi| image:: https://img.shields.io/pypi/v/edc-search.svg :target: https://pypi.python.org/pypi/edc-search

.. |actions| image:: https://github.com/clinicedc/edc-search/workflows/build/badge.svg?branch=develop :target: https://github.com/clinicedc/edc-search/actions?query=workflow:build

.. |coverage| image:: https://coveralls.io/repos/github/clinicedc/edc-search/badge.svg?branch=develop :target: https://coveralls.io/github/clinicedc/edc-search?branch=develop

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc