We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
class LocationMunicipality(models.Model): name = models.TextField(blank=False, primary_key=True) obj = LocationMunicipality(name='Carlow/Mayo') obj.save()
Mass admin will raise the following, if we will try to open one particular object, or several objects at once:
NoReverseMatch Reverse for 'massadmin_change_view' with keyword arguments '{'app_name': 'location', 'model_name': 'locationmunicipalitydistrict', 'object_ids': 'Carlow/Mayo'}' not found. 1 pattern(s) tried: ['admin/(?P<app_name>[^/]+)/(?P<model_name>[^/]+)\\-masschange/(?P<object_ids>[^/]+)/\\Z']
The problem can be seen here:
Value not quoted as expected by django admin.
Django admin use own pk quotation quote function from: django.contrib.admin.utils
quote
django.contrib.admin.utils
Patch coming soon.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Mass admin will raise the following, if we will try to open one particular object, or several objects at once:
The problem can be seen here:
Value not quoted as expected by django admin.
Django admin use own pk quotation
quote
function from:django.contrib.admin.utils
Patch coming soon.
The text was updated successfully, but these errors were encountered: