I have a model:
class Profile(models.Model):
social_github = models.URLField(blank=True, null=True)
social_twitter = models.URLField(blank=True, null=True)
social_linkedin = models.URLField(blank=True, null=True)
social_youtube = models.URLField(blank=True, null=True)
I want to validate the URL to their respective domain
for example, the user should only be able to submit the URL of the GitHub domain in the Github field and if the user submits the URL with other domains he should get an error