diff --git a/argocd/deployment.yaml b/argocd/deployment.yaml index 7263556..c757ea7 100644 --- a/argocd/deployment.yaml +++ b/argocd/deployment.yaml @@ -27,7 +27,7 @@ spec: mountPath: /data containers: - name: web - image: git.baumann.gr/adebaumann/labhelper:0.025 + image: git.baumann.gr/adebaumann/labhelper:0.026 imagePullPolicy: Always ports: - containerPort: 8000 diff --git a/boxes/templates/boxes/thing_detail.html b/boxes/templates/boxes/thing_detail.html index f87347f..a8c7825 100644 --- a/boxes/templates/boxes/thing_detail.html +++ b/boxes/templates/boxes/thing_detail.html @@ -83,6 +83,45 @@ .nav-links a { margin-right: 15px; } + .move-form { + background: white; + padding: 20px; + border-radius: 8px; + box-shadow: 0 1px 3px rgba(0,0,0,0.1); + margin-top: 20px; + } + .move-form label { + font-weight: 600; + color: #666; + font-size: 14px; + margin-bottom: 8px; + display: block; + } + .move-form select { + padding: 8px 12px; + border: 1px solid #ddd; + border-radius: 4px; + font-size: 14px; + background-color: white; + margin-right: 10px; + } + .move-form select:focus { + outline: none; + border-color: #4a90a4; + } + .btn { + background-color: #4a90a4; + color: white; + padding: 8px 16px; + border: none; + border-radius: 4px; + font-size: 14px; + cursor: pointer; + font-weight: 600; + } + .btn:hover { + background-color: #3d7a96; + }
@@ -125,7 +164,22 @@