view client/src/components/systemconfiguration/Systemconfiguration.vue @ 3597:d1bbfb9635ca

client: configuration: unified styles of different config components
author Markus Kottlaender <markus@intevation.de>
date Tue, 04 Jun 2019 16:54:45 +0200
parents cffa99aa523c
children a688a478e35f
line wrap: on
line source

<template>
  <div class="d-flex h-100">
    <Spacer />
    <div class="card my-2 mr-2 flex-fill shadow-xs">
      <UIBoxHeader icon="wrench" :title="systemconfigurationLabel" />
      <div class="text-left flex-fill" style="overflow: auto">
        <PDFTemplates />
        <ColorSettings v-if="isSysAdmin" />
      </div>
      <!-- card-body -->
    </div>
  </div>
</template>

<script>
/* This is Free Software under GNU Affero General Public License v >= 3.0
 * without warranty, see README.md and license for details.
 *
 * SPDX-License-Identifier: AGPL-3.0-or-later
 * License-Filename: LICENSES/AGPL-3.0.txt
 *
 * Copyright (C) 2018 by via donau
 *   – Österreichische Wasserstraßen-Gesellschaft mbH
 * Software engineering by Intevation GmbH
 *
 * Author(s):
 * Thomas Junk <thomas.junk@intevation.de>
 * Bernhard Reiter <bernhard@intevation.de>
 * Markus Kottländer <markus@intevation.de>
 */
import { mapGetters } from "vuex";

export default {
  name: "systemconfiguration",
  components: {
    Spacer: () => import("../Spacer"),
    PDFTemplates: () => import("./PDFTemplates"),
    ColorSettings: () => import("./ColorSettings")
  },
  computed: {
    ...mapGetters("user", ["isSysAdmin"]),
    systemconfigurationLabel() {
      return this.$gettext("Systemconfiguration");
    }
  }
};
</script>