I am running Django together with Cassandra DB. The cassandra.cqlengine.columns.UUID
variable is translated by the url
tag in Django template to the form of UUID('uuid_identifier')
.
The expression {% url 'myapp' uuid %}
results in url like .../UUID('uuid_identifier')
. This causes problem if you are awaiting url
in form of .../uuid_identifier
.