django-hashids icon indicating copy to clipboard operation
django-hashids copied to clipboard

Non-intrusive hashids library for Django

Results 3 django-hashids issues
Sort by recently updated
recently updated
newest added

The old hashids package is replaced by sqids (https://sqids.org/python). Although this happened very recently I wanted to open this issue to discuss the path forward for the django-hashids package. What...

Could you explain how to use django-hashids with DRF correctly when trying to make post request consider this model and serialize files below model.py class Author(models.Model): hashid = HashidsField() name...

Using DRF and changing the lookup field is easy ```python class ProductViewSet(viewsets.ModelViewSet): lookup_field = "hashid" # ... ``` How do I do the same within admin so that http://localhost:8000/admin/core/product/ links...