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

broken compute details info is fixed.

This commit is contained in:
catborise 2018-07-31 10:15:59 +03:00
parent 17c619606d
commit eb621ef2c6
5 changed files with 117 additions and 66 deletions

View file

@ -6,7 +6,7 @@ class Compute(models.Model):
hostname = models.CharField(max_length=20)
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=50, null=True, blank=True)
type = models.IntegerField()
def __unicode__(self):