summaryrefslogtreecommitdiff
path: root/src/views/_sila/Settings/TransferInfo/Syslog.vue
blob: 1d2111c98d51b4f5556146f144b7762ab3b104f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<template>
  <page-section :section-title="$t('pageLdap.settings')">
    <b-row class="mt-4 justify-content-end">
      <b-col xs="12" sm="6" lg="4">
        <b-form-group label="Расположение системы" label-for="system-location">
          <b-form-input
            id="system-location"
            placeholder="Ведите значение"
            :disabled="$store.getters['authentication/role'] === 'ReadOnly'"
          /> </b-form-group
      ></b-col>
      <b-col xs="12" sm="6" lg="4">
        <b-form-group label="Контакты системы" label-for="system-contacts">
          <b-form-input
            id="system-contacts"
            placeholder="Ведите значение"
            :disabled="$store.getters['authentication/role'] === 'ReadOnly'"
          />
        </b-form-group>
      </b-col>
      <b-col xs="12" sm="6" lg="4">
        <b-form-group label="Статус" label-for="SMNP-status">
          <b-form-select id="SMNP-status"> </b-form-select>
        </b-form-group>
      </b-col>
      <b-col xs="4" class="d-flex justify-content-end align-items-start">
        <b-button variant="primary">
          {{ $t('global.action.save') }}
        </b-button>
      </b-col>
    </b-row>
  </page-section>
</template>

<script>
import PageSection from '@/components/_sila/Global/PageSection';

export default {
  name: 'Syslog',
  components: {
    PageSection,
  },

  data() {
    return {};
  },
  computed: {},
};
</script>