on_delete argument should has specific value, not simple strings. You need to change your foreign keys to the following:
dress_town = models.ForeignKey(Town, on_delete=models.DO_NOTHING, verbose_name='المحافظة', blank=False)
You need to use models.DO_NOTHING
instead of DO_NOTHING
string.