Compare commits

..

18 commits

Author SHA1 Message Date
22ee68a3bf Merge branch 'jedi/dev' into bton/dev 2024-11-02 00:32:49 +00:00
b851809214 assigned ticket button is pre selected and deisabled if selected person == asigned person 2024-11-02 01:24:12 +01:00
987a851fc3 state button has the state pre selected 2024-11-02 01:13:21 +01:00
1fb25c796f add dev docker 2024-11-01 23:41:29 +01:00
84aa2e8820 disable Assigned Ticket butten in ticket view until they would actually do something 2024-11-01 22:48:24 +01:00
546e49e50e stash events admin frontend 2024-11-01 22:26:15 +01:00
c6ddbfe7b8 stash 2024-07-19 21:04:55 +02:00
ec1cdfd4f5 stash 2024-07-18 21:11:53 +02:00
d4b6912894 stash 2024-07-18 20:32:31 +02:00
64af2d4434 stash 2024-07-17 20:22:40 +02:00
861cef95ab stash 2024-07-17 19:03:47 +02:00
5154ade894 stash 2024-07-17 18:59:54 +02:00
594b8c4da3 stash 2024-07-17 18:43:40 +02:00
d6182f8b31 stash 2024-07-13 17:28:38 +02:00
e005d6fb6f stash 2024-06-29 16:48:47 +02:00
fc3484fe22 stash 2024-06-28 00:49:09 +02:00
d6823a147b stash 2024-06-26 21:22:34 +02:00
5e6030e715 stash 2024-06-26 21:03:29 +02:00
4 changed files with 4 additions and 27 deletions

3
.gitmodules vendored
View file

@ -1,3 +0,0 @@
[submodule "web/extras"]
path = web/extras
url = https://git.neulandlabor.de/j3d1/vue-extras.git

View file

@ -1,20 +0,0 @@
# Generated by Django 4.2.7 on 2024-11-03 18:30
from django.db import migrations, models
import django.db.models.deletion
class Migration(migrations.Migration):
dependencies = [
('inventory', '0004_alter_event_created_at_alter_item_created_at'),
('mail', '0004_alter_emailattachment_file'),
]
operations = [
migrations.AlterField(
model_name='eventaddress',
name='event',
field=models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='addresses', to='inventory.event'),
),
]

View file

@ -4,11 +4,11 @@ services:
context: ../../core context: ../../core
dockerfile: ../deploy/dev/Dockerfile.backend dockerfile: ../deploy/dev/Dockerfile.backend
command: bash -c 'python manage.py migrate && python manage.py runserver 0.0.0.0:8000' command: bash -c 'python manage.py migrate && python manage.py runserver 0.0.0.0:8000'
environment: #environment:
- HTTP_HOST=core # - DATABASE_URL
#- DATABASE_URL
volumes: volumes:
- ../../core:/code - ../../core:/code
- ./.backend.env:/code/.env
ports: ports:
- "8000:8000" - "8000:8000"

View file

@ -66,7 +66,7 @@ export default {
methods: { methods: {
...mapActions(['createEvent']), ...mapActions(['createEvent']),
validate_data() { validate_data() {
return this.pre_start <= this.start && this.start <= this.end && this.end <= this.post_end && !!this.slug && !!this.name; return this.pre_start <= this.start && this.start <= this.end && this.end <= this.post_end && !!this.event_slug && !!this.event_name;
}, },
prepare_date_field(e) { prepare_date_field(e) {
if (!e.target.value) { if (!e.target.value) {