# Quick Start This section guides you through a simple, end-to-end example of integrating `django_tomselect` into your Django project. By the end, you’ll have a functioning autocomplete-enabled select field that dynamically fetches options from the server as the user types. ## Basic Form Implementation The simplest approach is to add a `TomSelectModelChoiceField` to a basic form. This field uses a `TomSelectConfig` that specifies where to fetch data from and how to display it. ```python from django import forms from django_tomselect import TomSelectConfig, TomSelectModelChoiceField class SimpleForm(forms.Form): magazine = TomSelectModelChoiceField( config=TomSelectConfig( url="autocomplete-magazine", # Name of the URL pattern for your autocomplete view value_field="id", # Field returned as the