note : This is closely related to the answer in this question : django admin - add custom form fields that are not part of the model
In Django it is possible to create custom ModelForms that have "rouge" fields that don't pertain to a specific database field in any model.
In the following code example there is a custom field that called 'extra_field'. It appears in the admin page for it's model instance and it can be accessed in the save method but there does not appear to be a 'load' method.
How do I load the 'extra_field' with data before the admin page loads?
# admin.py
class YourModelForm(forms.ModelForm):
    extra_field = forms.CharField()
    def load(..., obj):
        # This method doesn't exist.
        # extra_field = obj.id * random()
    def save(self, commit=True):
        extra_field = self.cleaned_data.get('extra_field', None)
        return super(YourModelForm, self).save(commit=commit)
    class Meta:
        model = YourModel
class YourModelAdmin(admin.ModelAdmin):
    form = YourModelForm
    fieldsets = (
        (None, {
            'fields': ('name', 'description', 'extra_field',),
        }),
    )
source code by @vishnu
 
     
    