1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2025-07-31 12:41:08 +00:00

change compute name, hostaname, details char size. url.py typo fix

This commit is contained in:
catborise 2020-01-21 15:26:35 +03:00
parent 70032fc2e1
commit c79a635923
3 changed files with 32 additions and 4 deletions

View file

@ -6,7 +6,7 @@ class Compute(models.Model):
hostname = models.CharField(max_length=64)
login = models.CharField(max_length=20)
password = models.CharField(max_length=14, blank=True, null=True)
details = models.CharField(max_length=50, null=True, blank=True)
details = models.CharField(max_length=64, null=True, blank=True)
type = models.IntegerField()
def __unicode__(self):