Ling X. Yang

Results 27 comments of Ling X. Yang

Agreed. This is easy to do: using `client.is_geolocalized`.

Note: PR #776 has added "Geolocalized" in client list: ![image](https://user-images.githubusercontent.com/8630726/27876068-9dc12044-6183-11e7-9f39-a448ad019ce5.png) This issue is to enhance the display of non-geolocalized clients, and also extend the display to route views.

@ksonbol `get_db_prep_value()` itself is not expected to raise an exception. This method links Python interface of `object.get()`, `object.filter()` and `object.save()` to underlying database value, not _user provided query/update parameter_ to...

@ksonbol Yes it does. Django's way of handling invalid value is to write URL regex that excludes all non-integers from getting into the ORM interface by returning 404. URL exclusion...

The encoded characters in simple fields work correctly at my side (encoded utf-8): View from Plone: ![image](https://cloud.githubusercontent.com/assets/8630726/24460099/43aa6418-146b-11e7-87d1-4e54377e5341.png) CSV: ![image](https://cloud.githubusercontent.com/assets/8630726/24460123/50867294-146b-11e7-94a4-cb45bf013ef2.png) However, we have the problem in multiple choice fields. All the...

@ksonbol That's right -- I didn't consider the `null=True` situation... Thus it seems returning an arbitrary UUID is the only way to work around this problem?

@ksonbol It seems that UUIDField is designed to be an auto field... https://github.com/dcramer/django-uuidfield/blob/master/uuidfield/tests/tests.py#L19-L20