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

Add logs and block for templates

This commit is contained in:
Retspen 2015-03-03 11:34:09 +02:00
parent 55e93a9087
commit 5960e94da5
35 changed files with 183 additions and 29 deletions

11
logs/models.py Normal file
View file

@ -0,0 +1,11 @@
from django.db import models
from instances.models import Instance
class Logs(models.Model):
instance = models.ForeignKey(Instance)
message = models.CharField(max_length=255)
date = models.DateTimeField()
def __unicode__(self):
return self.instance