comparison client/src/components/map/contextbox/Imports.vue @ 1279:60e15c2d26a2

licensing info updated
author Thomas Junk <thomas.junk@intevation.de>
date Thu, 22 Nov 2018 09:50:13 +0100
parents 8f4bf8576acd
children
comparison
equal deleted inserted replaced
1278:8f4bf8576acd 1279:60e15c2d26a2
1 <template> 1 <template>
2 <div> 2 <div>
3 <h6 class="mb-0 py-2 px-3 border-bottom d-flex align-items-center"> 3 <h6 class="mb-0 py-2 px-3 border-bottom d-flex align-items-center">
4 <i class="fa fa-upload mr-2"></i> 4 <i class="fa fa-upload mr-2"></i>
5 Import Soundingresults 5 Import Soundingresults
6 </h6> 6 </h6>
7 <div v-if="editState" class="ml-auto mr-auto mt-4 w-90"> 7 <div v-if="editState" class="ml-auto mr-auto mt-4 w-90">
8 <div class="d-flex flex-row input-group mb-4"> 8 <div class="d-flex flex-row input-group mb-4">
9 <div class="offset-r"> 9 <div class="offset-r">
10 <label for="bottleneck" class="label-text" id="bottlenecklabel">Bottleneck</label> 10 <label for="bottleneck" class="label-text" id="bottlenecklabel">Bottleneck</label>
80 </div> 80 </div>
81 </div> 81 </div>
82 </template> 82 </template>
83 83
84 <script> 84 <script>
85 /* This is Free Software under GNU Affero General Public License v >= 3.0
86 * without warranty, see README.md and license for details.
87 *
88 * SPDX-License-Identifier: AGPL-3.0-or-later
89 * License-Filename: LICENSES/AGPL-3.0.txt
90 *
91 * Copyright (C) 2018 by via donau
92 * – Österreichische Wasserstraßen-Gesellschaft mbH
93 * Software engineering by Intevation GmbH
94 *
95 * Author(s):
96 * Thomas Junk <thomas.junk@intevation.de>
97 * Markus Kottländer <markus.kottlaender@intevation.de>
98 */
85 import { HTTP } from "../../../lib/http"; 99 import { HTTP } from "../../../lib/http";
86 import { displayError, displayInfo } from "../../../lib/errors.js"; 100 import { displayError, displayInfo } from "../../../lib/errors.js";
87 101
88 const defaultLabel = "Choose .zip-file"; 102 const defaultLabel = "Choose .zip-file";
89 const IMPORTSTATE = { UPLOAD: "UPLOAD", EDIT: "EDIT" }; 103 const IMPORTSTATE = { UPLOAD: "UPLOAD", EDIT: "EDIT" };