from django.db import models class DiveBase(models.Model): name = models.CharField(max_length=255) location = models.CharField(max_length=255)