删除runcommand目录

This commit is contained in:
guanghongwei
2014-09-15 21:19:07 +08:00
parent 4444d53c0a
commit 07ee63f04c
11 changed files with 48 additions and 18 deletions

View File

@@ -1,3 +0,0 @@
from django.contrib import admin
# Register your models here.

View File

@@ -1,12 +0,0 @@
from django.db import models
class Server(models.Model):
ip = models.CharField(max_length=16)
username = models.CharField(max_length=20)
password = models.CharField(max_length=30)
port = models.IntegerField(max_length=5)
sudo = models.BooleanField()
def __unicode__(self):
return self.ip

View File

@@ -1,2 +0,0 @@
from django.shortcuts import render