diff client/src/components/admin/importschedule/Importscheduledetail.vue @ 1529:a679f765d7b0

layout
author Thomas Junk <thomas.junk@intevation.de>
date Fri, 07 Dec 2018 12:26:26 +0100
parents 9b81ac91a43e
children 44e094330272
line wrap: on
line diff
--- a/client/src/components/admin/importschedule/Importscheduledetail.vue	Fri Dec 07 12:21:55 2018 +0100
+++ b/client/src/components/admin/importschedule/Importscheduledetail.vue	Fri Dec 07 12:26:26 2018 +0100
@@ -10,8 +10,16 @@
         </span>
       </h6>
       <div class="card-body">
-        <h1>lalala</h1>
-        <form @submit.prevent="save" class="ml-3"></form>
+        <form @submit.prevent="save" class="ml-3">
+          <small class="text-muted"> <translate>Imports</translate> </small>
+          <select v-model="import_" class="custom-select" id="depthreference">
+            <option
+              v-for="option in this.$options.depthReferenceOptions"
+              :key="option"
+              >{{ option }}</option
+            >
+          </select>
+        </form>
       </div>
     </div>
   </div>
@@ -22,6 +30,11 @@
 
 export default {
   name: "importscheduledetail",
+  data() {
+    return {
+      import_: null
+    };
+  },
   computed: {
     ...mapState("imports", ["importScheduleDetailVisible"])
   },
@@ -36,7 +49,9 @@
 
 <style lang="scss" scoped>
 .importscheduledetails {
+  width: 45%;
   margin-top: $offset;
   margin-left: $offset;
+  margin-right: $offset;
 }
 </style>