Improved public page link text
Instead of putting the name of the entity in the link text to the
public page, a way better solution is to put static text there.
from django.core.management.base import NoArgsCommand
class Command(NoArgsCommand):
help = "Validates all installed models."
requires_model_validation = False
def handle_noargs(self, **options):
self.validate(display_num_errors=True)