├── .gitattributes ├── .idea ├── Interface_TestPlatform.iml ├── Interface_TestPlatform.iml___jb_tmp___ ├── encodings.xml ├── misc.xml ├── modules.xml ├── twts_173_carbon.iml ├── vcs.xml └── workspace.xml ├── BootstrapEx ├── css │ ├── bootstrap.min(1).css │ ├── bootstrapEx(1).css │ └── font.min.css ├── fonts │ ├── glyphicons-halflings-regular(1).eot │ ├── glyphicons-halflings-regular(1).svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── iframetest.html ├── index.html └── js │ ├── bootstrap.min.js │ ├── bootstrapEx.js │ └── jquery-1.9.1.min.js ├── Interface_TestPlatform ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── celery.cpython-36.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── wsgi.cpython-36.pyc ├── celery.py ├── settings.py ├── urls.py └── wsgi.py ├── README.md ├── apps ├── __init__.py ├── apitest │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── forms.cpython-36.pyc │ │ ├── models.cpython-36.pyc │ │ ├── task.cpython-36.pyc │ │ ├── task_thread.cpython-36.pyc │ │ ├── urls.cpython-36.pyc │ │ └── views.cpython-36.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── guo.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_testtask.py │ │ ├── 0003_auto_20191201_1557.py │ │ ├── 0004_auto_20191205_2211.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ ├── 0002_testtask.cpython-36.pyc │ │ │ ├── 0003_auto_20191201_1557.cpython-36.pyc │ │ │ ├── 0004_auto_20191205_2211.cpython-36.pyc │ │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── results.xml │ ├── results1.xml │ ├── run_task.py │ ├── run_task1.py │ ├── run_task2.py │ ├── task.py │ ├── task_thread.py │ ├── templates │ │ └── apitest │ │ │ ├── case_list.html │ │ │ ├── case_list1.html │ │ │ ├── report.html │ │ │ ├── report1.html │ │ │ └── task_list.html │ ├── test_HTMLTestRunnerEN.py │ ├── test_data_list.json │ ├── test_data_list1.json │ ├── test_data_list2.json │ ├── tests.py │ ├── urls.py │ ├── views.py │ └── views1.py ├── projects │ ├── Report.html │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ ├── admin.cpython-36.pyc │ │ ├── forms.cpython-36.pyc │ │ ├── models.cpython-36.pyc │ │ ├── urls.cpython-36.pyc │ │ └── views.cpython-36.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-36.pyc │ │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── templates │ │ └── projects │ │ │ ├── module_list.html │ │ │ └── project_list.html │ ├── tests.py │ ├── urls.py │ └── views.py └── users │ ├── __init__.py │ ├── __pycache__ │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-36.pyc │ ├── forms.cpython-36.pyc │ ├── models.cpython-36.pyc │ ├── urls.cpython-36.pyc │ └── views.cpython-36.pyc │ ├── admin.py │ ├── apps.py │ ├── forms.py │ ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-36.pyc │ │ └── __init__.cpython-36.pyc │ ├── models.py │ ├── templates │ └── users │ │ ├── login.html │ │ ├── register.html │ │ └── reset_password.html │ ├── tests.py │ ├── urls.py │ └── views.py ├── db.sqlite3 ├── image ├── case.png ├── case_add1.png ├── case_add2.png ├── case_run.png ├── moudle.png ├── moudle_add.png ├── project.png ├── project_add.png ├── task.png ├── task_add.png └── task_run.png ├── manage.py ├── requirement.txt ├── static ├── css │ └── extent.css ├── dist │ ├── 404.html │ ├── 500.html │ ├── alerts.html │ ├── blank.html │ ├── buttons.html │ ├── cards.html │ ├── chartjs.html │ ├── css │ │ └── styles.css │ ├── forms.html │ ├── imgs │ │ ├── avatar-1.png │ │ ├── logo.png │ │ └── logo1.jpg │ ├── index.html │ ├── invoice.html │ ├── js │ │ ├── carbon.js │ │ └── demo.js │ ├── layouts-fixed-header.html │ ├── layouts-fixed-sidebar.html │ ├── layouts-hidden-sidebar.html │ ├── layouts-normal.html │ ├── login.html │ ├── modals.html │ ├── password-change.html │ ├── progress-bars.html │ ├── settings.html │ ├── tables.html │ ├── tabs.html │ ├── vendor │ │ ├── bootstrap │ │ │ └── js │ │ │ │ └── bootstrap.min.js │ │ ├── chart.js │ │ │ ├── chart.js │ │ │ └── chart.min.js │ │ ├── font-awesome │ │ │ ├── css │ │ │ │ ├── fa-brands.css │ │ │ │ ├── fa-brands.min.css │ │ │ │ ├── fa-regular.css │ │ │ │ ├── fa-regular.min.css │ │ │ │ ├── fa-solid.css │ │ │ │ ├── fa-solid.min.css │ │ │ │ ├── fontawesome-all.css │ │ │ │ ├── fontawesome-all.min.css │ │ │ │ ├── fontawesome.css │ │ │ │ └── fontawesome.min.css │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── jquery │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ │ ├── popper.js │ │ │ └── popper.min.js │ │ └── simple-line-icons │ │ │ ├── css │ │ │ └── simple-line-icons.css │ │ │ └── fonts │ │ │ ├── Simple-Line-Icons.eot │ │ │ ├── Simple-Line-Icons.svg │ │ │ ├── Simple-Line-Icons.ttf │ │ │ ├── Simple-Line-Icons.woff │ │ │ └── Simple-Line-Icons.woff2 │ └── widgets.html ├── js │ └── extent.js ├── mix-manifest.json ├── package.json ├── src │ ├── imgs │ │ ├── avatar-1.png │ │ └── logo.png │ ├── js │ │ ├── carbon.js │ │ └── demo.js │ └── sass │ │ ├── carbon │ │ ├── _alert.scss │ │ ├── _avatars.scss │ │ ├── _buttons.scss │ │ ├── _card.scss │ │ ├── _forms.scss │ │ ├── _header.scss │ │ ├── _layout.scss │ │ ├── _mixins.scss │ │ ├── _nav.scss │ │ ├── _navbar.scss │ │ ├── _reboot.scss │ │ ├── _sidebar.scss │ │ ├── _switches.scss │ │ ├── _utilities.scss │ │ ├── _variables.scss │ │ ├── carbon.scss │ │ └── utilities │ │ │ ├── _borders.scss │ │ │ └── _display.scss │ │ ├── styles.scss │ │ └── vendor │ │ └── vendor.scss ├── webpack.mix.js ├── yarn.lock └── ztree │ ├── css │ └── bootstrapStyle │ │ ├── bootstrapStyle.css │ │ └── img │ │ ├── bootstrap.png │ │ └── line_conn.png │ ├── js │ ├── jquery.ztree.core.js │ ├── jquery.ztree.excheck.js │ └── jquery.ztree.exedit.js │ └── ztree.html └── templates ├── base.html └── index.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/.gitattributes -------------------------------------------------------------------------------- /.idea/Interface_TestPlatform.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/.idea/Interface_TestPlatform.iml -------------------------------------------------------------------------------- /.idea/Interface_TestPlatform.iml___jb_tmp___: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/twts_173_carbon.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/.idea/twts_173_carbon.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /BootstrapEx/css/bootstrap.min(1).css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/BootstrapEx/css/bootstrap.min(1).css -------------------------------------------------------------------------------- /BootstrapEx/css/bootstrapEx(1).css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/BootstrapEx/css/bootstrapEx(1).css -------------------------------------------------------------------------------- /BootstrapEx/css/font.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/BootstrapEx/css/font.min.css -------------------------------------------------------------------------------- /BootstrapEx/fonts/glyphicons-halflings-regular(1).eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/BootstrapEx/fonts/glyphicons-halflings-regular(1).eot -------------------------------------------------------------------------------- /BootstrapEx/fonts/glyphicons-halflings-regular(1).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/BootstrapEx/fonts/glyphicons-halflings-regular(1).svg -------------------------------------------------------------------------------- /BootstrapEx/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/BootstrapEx/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /BootstrapEx/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/BootstrapEx/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /BootstrapEx/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/BootstrapEx/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /BootstrapEx/iframetest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/BootstrapEx/iframetest.html -------------------------------------------------------------------------------- /BootstrapEx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/BootstrapEx/index.html -------------------------------------------------------------------------------- /BootstrapEx/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/BootstrapEx/js/bootstrap.min.js -------------------------------------------------------------------------------- /BootstrapEx/js/bootstrapEx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/BootstrapEx/js/bootstrapEx.js -------------------------------------------------------------------------------- /BootstrapEx/js/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/BootstrapEx/js/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /Interface_TestPlatform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Interface_TestPlatform/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/Interface_TestPlatform/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /Interface_TestPlatform/__pycache__/celery.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/Interface_TestPlatform/__pycache__/celery.cpython-36.pyc -------------------------------------------------------------------------------- /Interface_TestPlatform/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/Interface_TestPlatform/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /Interface_TestPlatform/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/Interface_TestPlatform/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /Interface_TestPlatform/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/Interface_TestPlatform/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /Interface_TestPlatform/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/Interface_TestPlatform/celery.py -------------------------------------------------------------------------------- /Interface_TestPlatform/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/Interface_TestPlatform/settings.py -------------------------------------------------------------------------------- /Interface_TestPlatform/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/Interface_TestPlatform/urls.py -------------------------------------------------------------------------------- /Interface_TestPlatform/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/Interface_TestPlatform/wsgi.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/README.md -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/apitest/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/apitest/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/apitest/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/apitest/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /apps/apitest/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/apitest/__pycache__/task.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/__pycache__/task.cpython-36.pyc -------------------------------------------------------------------------------- /apps/apitest/__pycache__/task_thread.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/__pycache__/task_thread.cpython-36.pyc -------------------------------------------------------------------------------- /apps/apitest/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /apps/apitest/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /apps/apitest/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/admin.py -------------------------------------------------------------------------------- /apps/apitest/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/apps.py -------------------------------------------------------------------------------- /apps/apitest/forms.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/apitest/guo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/guo.py -------------------------------------------------------------------------------- /apps/apitest/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/apitest/migrations/0002_testtask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/migrations/0002_testtask.py -------------------------------------------------------------------------------- /apps/apitest/migrations/0003_auto_20191201_1557.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/migrations/0003_auto_20191201_1557.py -------------------------------------------------------------------------------- /apps/apitest/migrations/0004_auto_20191205_2211.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/migrations/0004_auto_20191205_2211.py -------------------------------------------------------------------------------- /apps/apitest/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/apitest/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /apps/apitest/migrations/__pycache__/0002_testtask.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/migrations/__pycache__/0002_testtask.cpython-36.pyc -------------------------------------------------------------------------------- /apps/apitest/migrations/__pycache__/0003_auto_20191201_1557.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/migrations/__pycache__/0003_auto_20191201_1557.cpython-36.pyc -------------------------------------------------------------------------------- /apps/apitest/migrations/__pycache__/0004_auto_20191205_2211.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/migrations/__pycache__/0004_auto_20191205_2211.cpython-36.pyc -------------------------------------------------------------------------------- /apps/apitest/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/apitest/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/models.py -------------------------------------------------------------------------------- /apps/apitest/results.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/results.xml -------------------------------------------------------------------------------- /apps/apitest/results1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/results1.xml -------------------------------------------------------------------------------- /apps/apitest/run_task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/run_task.py -------------------------------------------------------------------------------- /apps/apitest/run_task1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/run_task1.py -------------------------------------------------------------------------------- /apps/apitest/run_task2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/run_task2.py -------------------------------------------------------------------------------- /apps/apitest/task.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/task.py -------------------------------------------------------------------------------- /apps/apitest/task_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/task_thread.py -------------------------------------------------------------------------------- /apps/apitest/templates/apitest/case_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/templates/apitest/case_list.html -------------------------------------------------------------------------------- /apps/apitest/templates/apitest/case_list1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/templates/apitest/case_list1.html -------------------------------------------------------------------------------- /apps/apitest/templates/apitest/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/templates/apitest/report.html -------------------------------------------------------------------------------- /apps/apitest/templates/apitest/report1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/templates/apitest/report1.html -------------------------------------------------------------------------------- /apps/apitest/templates/apitest/task_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/templates/apitest/task_list.html -------------------------------------------------------------------------------- /apps/apitest/test_HTMLTestRunnerEN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/test_HTMLTestRunnerEN.py -------------------------------------------------------------------------------- /apps/apitest/test_data_list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/test_data_list.json -------------------------------------------------------------------------------- /apps/apitest/test_data_list1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/test_data_list1.json -------------------------------------------------------------------------------- /apps/apitest/test_data_list2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/test_data_list2.json -------------------------------------------------------------------------------- /apps/apitest/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/tests.py -------------------------------------------------------------------------------- /apps/apitest/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/urls.py -------------------------------------------------------------------------------- /apps/apitest/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/views.py -------------------------------------------------------------------------------- /apps/apitest/views1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/apitest/views1.py -------------------------------------------------------------------------------- /apps/projects/Report.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/projects/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/projects/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/projects/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/projects/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /apps/projects/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/projects/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /apps/projects/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /apps/projects/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/admin.py -------------------------------------------------------------------------------- /apps/projects/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/apps.py -------------------------------------------------------------------------------- /apps/projects/forms.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/projects/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/projects/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/projects/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /apps/projects/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/projects/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/models.py -------------------------------------------------------------------------------- /apps/projects/templates/projects/module_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/templates/projects/module_list.html -------------------------------------------------------------------------------- /apps/projects/templates/projects/project_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/templates/projects/project_list.html -------------------------------------------------------------------------------- /apps/projects/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/tests.py -------------------------------------------------------------------------------- /apps/projects/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/urls.py -------------------------------------------------------------------------------- /apps/projects/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/projects/views.py -------------------------------------------------------------------------------- /apps/users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/admin.py -------------------------------------------------------------------------------- /apps/users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/apps.py -------------------------------------------------------------------------------- /apps/users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/forms.py -------------------------------------------------------------------------------- /apps/users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/users/migrations/__pycache__/0001_initial.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/migrations/__pycache__/0001_initial.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/migrations/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/migrations/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /apps/users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/models.py -------------------------------------------------------------------------------- /apps/users/templates/users/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/templates/users/login.html -------------------------------------------------------------------------------- /apps/users/templates/users/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/templates/users/register.html -------------------------------------------------------------------------------- /apps/users/templates/users/reset_password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/templates/users/reset_password.html -------------------------------------------------------------------------------- /apps/users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/tests.py -------------------------------------------------------------------------------- /apps/users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/urls.py -------------------------------------------------------------------------------- /apps/users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/apps/users/views.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /image/case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/image/case.png -------------------------------------------------------------------------------- /image/case_add1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/image/case_add1.png -------------------------------------------------------------------------------- /image/case_add2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/image/case_add2.png -------------------------------------------------------------------------------- /image/case_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/image/case_run.png -------------------------------------------------------------------------------- /image/moudle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/image/moudle.png -------------------------------------------------------------------------------- /image/moudle_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/image/moudle_add.png -------------------------------------------------------------------------------- /image/project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/image/project.png -------------------------------------------------------------------------------- /image/project_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/image/project_add.png -------------------------------------------------------------------------------- /image/task.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/image/task.png -------------------------------------------------------------------------------- /image/task_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/image/task_add.png -------------------------------------------------------------------------------- /image/task_run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/image/task_run.png -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/manage.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/requirement.txt -------------------------------------------------------------------------------- /static/css/extent.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/css/extent.css -------------------------------------------------------------------------------- /static/dist/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/404.html -------------------------------------------------------------------------------- /static/dist/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/500.html -------------------------------------------------------------------------------- /static/dist/alerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/alerts.html -------------------------------------------------------------------------------- /static/dist/blank.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/blank.html -------------------------------------------------------------------------------- /static/dist/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/buttons.html -------------------------------------------------------------------------------- /static/dist/cards.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/cards.html -------------------------------------------------------------------------------- /static/dist/chartjs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/chartjs.html -------------------------------------------------------------------------------- /static/dist/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/css/styles.css -------------------------------------------------------------------------------- /static/dist/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/forms.html -------------------------------------------------------------------------------- /static/dist/imgs/avatar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/imgs/avatar-1.png -------------------------------------------------------------------------------- /static/dist/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/imgs/logo.png -------------------------------------------------------------------------------- /static/dist/imgs/logo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/imgs/logo1.jpg -------------------------------------------------------------------------------- /static/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/index.html -------------------------------------------------------------------------------- /static/dist/invoice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/invoice.html -------------------------------------------------------------------------------- /static/dist/js/carbon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/js/carbon.js -------------------------------------------------------------------------------- /static/dist/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/js/demo.js -------------------------------------------------------------------------------- /static/dist/layouts-fixed-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/layouts-fixed-header.html -------------------------------------------------------------------------------- /static/dist/layouts-fixed-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/layouts-fixed-sidebar.html -------------------------------------------------------------------------------- /static/dist/layouts-hidden-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/layouts-hidden-sidebar.html -------------------------------------------------------------------------------- /static/dist/layouts-normal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/layouts-normal.html -------------------------------------------------------------------------------- /static/dist/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/login.html -------------------------------------------------------------------------------- /static/dist/modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/modals.html -------------------------------------------------------------------------------- /static/dist/password-change.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/password-change.html -------------------------------------------------------------------------------- /static/dist/progress-bars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/progress-bars.html -------------------------------------------------------------------------------- /static/dist/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/settings.html -------------------------------------------------------------------------------- /static/dist/tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/tables.html -------------------------------------------------------------------------------- /static/dist/tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/tabs.html -------------------------------------------------------------------------------- /static/dist/vendor/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/dist/vendor/chart.js/chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/chart.js/chart.js -------------------------------------------------------------------------------- /static/dist/vendor/chart.js/chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/chart.js/chart.min.js -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/css/fa-brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/css/fa-brands.css -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/css/fa-brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/css/fa-brands.min.css -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/css/fa-regular.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/css/fa-regular.css -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/css/fa-regular.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/css/fa-regular.min.css -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/css/fa-solid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/css/fa-solid.css -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/css/fa-solid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/css/fa-solid.min.css -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/css/fontawesome-all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/css/fontawesome-all.css -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/css/fontawesome-all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/css/fontawesome-all.min.css -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/css/fontawesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/css/fontawesome.css -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/css/fontawesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/css/fontawesome.min.css -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/webfonts/fa-brands-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/webfonts/fa-brands-400.woff2 -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/webfonts/fa-regular-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/webfonts/fa-regular-400.woff -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/webfonts/fa-regular-400.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/webfonts/fa-regular-400.woff2 -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /static/dist/vendor/font-awesome/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/font-awesome/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /static/dist/vendor/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/jquery/jquery.js -------------------------------------------------------------------------------- /static/dist/vendor/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/jquery/jquery.min.js -------------------------------------------------------------------------------- /static/dist/vendor/popper.js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/popper.js/popper.min.js -------------------------------------------------------------------------------- /static/dist/vendor/simple-line-icons/css/simple-line-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/simple-line-icons/css/simple-line-icons.css -------------------------------------------------------------------------------- /static/dist/vendor/simple-line-icons/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/simple-line-icons/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /static/dist/vendor/simple-line-icons/fonts/Simple-Line-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/simple-line-icons/fonts/Simple-Line-Icons.svg -------------------------------------------------------------------------------- /static/dist/vendor/simple-line-icons/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/simple-line-icons/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /static/dist/vendor/simple-line-icons/fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/simple-line-icons/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /static/dist/vendor/simple-line-icons/fonts/Simple-Line-Icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/vendor/simple-line-icons/fonts/Simple-Line-Icons.woff2 -------------------------------------------------------------------------------- /static/dist/widgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/dist/widgets.html -------------------------------------------------------------------------------- /static/js/extent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/js/extent.js -------------------------------------------------------------------------------- /static/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/mix-manifest.json -------------------------------------------------------------------------------- /static/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/package.json -------------------------------------------------------------------------------- /static/src/imgs/avatar-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/imgs/avatar-1.png -------------------------------------------------------------------------------- /static/src/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/imgs/logo.png -------------------------------------------------------------------------------- /static/src/js/carbon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/js/carbon.js -------------------------------------------------------------------------------- /static/src/js/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/js/demo.js -------------------------------------------------------------------------------- /static/src/sass/carbon/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/_alert.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/_avatars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/_avatars.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/_buttons.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/_card.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/_forms.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/_header.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/_layout.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/_mixins.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/_nav.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/_navbar.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/_reboot.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/_sidebar.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/_switches.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/_switches.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/_utilities.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/_variables.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/carbon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/carbon.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/utilities/_borders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/utilities/_borders.scss -------------------------------------------------------------------------------- /static/src/sass/carbon/utilities/_display.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/carbon/utilities/_display.scss -------------------------------------------------------------------------------- /static/src/sass/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/src/sass/styles.scss -------------------------------------------------------------------------------- /static/src/sass/vendor/vendor.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/webpack.mix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/webpack.mix.js -------------------------------------------------------------------------------- /static/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/yarn.lock -------------------------------------------------------------------------------- /static/ztree/css/bootstrapStyle/bootstrapStyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/ztree/css/bootstrapStyle/bootstrapStyle.css -------------------------------------------------------------------------------- /static/ztree/css/bootstrapStyle/img/bootstrap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/ztree/css/bootstrapStyle/img/bootstrap.png -------------------------------------------------------------------------------- /static/ztree/css/bootstrapStyle/img/line_conn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/ztree/css/bootstrapStyle/img/line_conn.png -------------------------------------------------------------------------------- /static/ztree/js/jquery.ztree.core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/ztree/js/jquery.ztree.core.js -------------------------------------------------------------------------------- /static/ztree/js/jquery.ztree.excheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/ztree/js/jquery.ztree.excheck.js -------------------------------------------------------------------------------- /static/ztree/js/jquery.ztree.exedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/ztree/js/jquery.ztree.exedit.js -------------------------------------------------------------------------------- /static/ztree/ztree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/static/ztree/ztree.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitu-test/Interface_TestPlatform/HEAD/templates/index.html --------------------------------------------------------------------------------