diff --git a/Scripts/python.exe b/Scripts/python.exe
new file mode 100644
index 0000000000000000000000000000000000000000..9ab088b790f7a8235b690cbd1488690ccecdc4c7
Binary files /dev/null and b/Scripts/python.exe differ
diff --git a/Scripts/pythonw.exe b/Scripts/pythonw.exe
new file mode 100644
index 0000000000000000000000000000000000000000..d5fc547fed7a111604765de8581b133321a3e512
Binary files /dev/null and b/Scripts/pythonw.exe differ
diff --git a/assets/js/CreateVacancy.jsx b/assets/js/CreateVacancy.jsx
old mode 100755
new mode 100644
index 96a38d2a10ad0c871ed1250a1831ce7e74c77e1b..82c300026a05da135850c92847b3f2b3986f77e8
--- a/assets/js/CreateVacancy.jsx
+++ b/assets/js/CreateVacancy.jsx
@@ -36,6 +36,7 @@ export default class CreateVacancy extends React.Component {
description: '',
requirements: '',
salary: 0,
+ tag: '',
};
if (this.state.vacancyId) {
@@ -49,6 +50,7 @@ export default class CreateVacancy extends React.Component {
open_time: moment(r.open_time),
close_time: moment(r.close_time),
loading: false,
+ tag: r.tag,
});
});
}
@@ -84,6 +86,7 @@ export default class CreateVacancy extends React.Component {
const data = {};
data.name = this.state.name;
+ data.tag = this.state.tag;
data.description = this.state.description;
data.requirements = this.state.requirements;
data.salary = this.state.salary;
@@ -130,6 +133,10 @@ export default class CreateVacancy extends React.Component {
+
+