Autocomplete Search
models.py
from django.db import models
# Create your models here.
class City(models.Model):
name = models.CharField(max_length=100)
population = models.IntegerField()admin.py
from django.contrib import admin
from .models import City
# Register your models here.
admin.site.register(City)

views.py
Templates
templates/autocomplete/index.html
urls.py

Last updated