1
0
mirror of https://github.com/django/django.git synced 2025-10-24 06:06:09 +00:00

Fixed #17549 -- Added a clickable link for URLFields in admin change list.

This commit is contained in:
Ulrich Petri
2012-07-07 14:24:50 +02:00
committed by Florian Apolloner
parent 39f5bc7fc3
commit ac2052ebc8
4 changed files with 65 additions and 1 deletions

View File

@@ -922,6 +922,11 @@ Like all :class:`CharField` subclasses, :class:`URLField` takes the optional
:attr:`~CharField.max_length`argument. If you don't specify
:attr:`~CharField.max_length`, a default of 200 is used.
.. versionadded:: 1.5
The current value of the field will be displayed as a clickable link above the
input widget.
Relationship fields
===================