Mengganti teks dalam tombol Django Admin

class WaitlistEntry(Timestamps, models.Model):
    first_name = models.CharField(max_length=100)
    last_name = models.CharField(max_length=100)

    class Meta:
        verbose_name_plural = "Waitlist entries"

# verbose_name is a human-readable name for the field. 
# If the verbose name isn't given, Django will automatically create it using the field's attribute name, 
# converting underscores to spaces. This attribute in general changes the field name in admin interface.
Breakable Baboon