mirror of https://github.com/jumpserver/jumpserver
guanghongwei
10 years ago
11 changed files with 48 additions and 18 deletions
@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project version="4"> |
||||
<component name="Encoding" useUTFGuessing="true" native2AsciiForPropertiesFiles="false" /> |
||||
</project> |
||||
|
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<module type="PYTHON_MODULE" version="4"> |
||||
<component name="NewModuleRootManager"> |
||||
<content url="file://$MODULE_DIR$" /> |
||||
<orderEntry type="inheritedJdk" /> |
||||
<orderEntry type="sourceFolder" forTests="false" /> |
||||
</component> |
||||
</module> |
||||
|
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project version="4"> |
||||
<component name="ProjectRootManager" version="2" project-jdk-name="Python 2.7.6 (C:/Python27/python.exe)" project-jdk-type="Python SDK" /> |
||||
<component name="PyConsoleOptionsProvider"> |
||||
<option name="myPythonConsoleState"> |
||||
<console-settings is-module-sdk="true"> |
||||
<option name="myUseModuleSdk" value="true" /> |
||||
</console-settings> |
||||
</option> |
||||
</component> |
||||
</project> |
||||
|
@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project version="4"> |
||||
<component name="ProjectModuleManager"> |
||||
<modules> |
||||
<module fileurl="file://$PROJECT_DIR$/.idea/jumpserver.iml" filepath="$PROJECT_DIR$/.idea/jumpserver.iml" /> |
||||
</modules> |
||||
</component> |
||||
</project> |
||||
|
@ -0,0 +1,5 @@
|
||||
<component name="DependencyValidationManager"> |
||||
<state> |
||||
<option name="SKIP_IMPORT_STATEMENTS" value="false" /> |
||||
</state> |
||||
</component> |
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project version="4"> |
||||
<component name="VcsDirectoryMappings"> |
||||
<mapping directory="$PROJECT_DIR$" vcs="Git" /> |
||||
</component> |
||||
</project> |
||||
|
@ -1,3 +0,0 @@
|
||||
from django.contrib import admin |
||||
|
||||
# Register your models here. |
@ -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 |
Loading…
Reference in new issue