Field.get_bound_field(form, field_name) [source]
Takes an instance of Form and the name of the field. The return value will be used when accessing the field in a template. Most likely it will be an instance of a subclass of BoundField.
If you have a GPSCoordinatesField, for example, and want to be able to access additional information about the coordinates in a template, this could be implemented as follows:
class GPSCoordinatesBoundField(BoundField):
@property
def country(self):