Ok for something that sounds easy, im having some problems looking for an answer. I have this model:
class Page(models.Model):
creator = models.TextField(blank=False)
name = models.CharField(max_length=70, primary_key=True)
name_slug = models.SlugField(max_length=70, unique=True)
whenever I save in admin im doing a pre-save operation(save_model()) that passes the slugged value of name + creator(ex: i_am_legend_cyber_valdez) to name_slug, what i want to do is completely make the name_slug textbox in admin text-only without playing around with admin templates. Is this possible?