Commit Graph

47 Commits

Author SHA1 Message Date
Thomas Steen Rasmussen 517f29940a remove FK from ShopTicket to Order and replace with an FK to OrderProductRelation 2021-07-29 09:03:52 +02:00
Flemming Jacobsen aaecfe0302 Add FJ 2021-05-03 12:51:41 +02:00
Thomas Flummer 7626d375b7 Renamed references to bootstrap_devsite, to follow new name 2020-11-01 18:26:20 +01:00
Thomas Steen Rasmussen 582a006cf1 fix pg version and typo in README.md 2020-06-19 06:25:55 +02:00
Thomas Steen Rasmussen eff4bfaf1c
SpeakerAvailability, EventSession, autoscheduler, and other goodies (#497)
* fix old bug where the get_days() method would return the wrong number of days, this was not discovered because our bootstrap script has been creating 9 day camps instead of 8 day camps (this has been fixed in a different commit)

* remove stray debug print

* output camp days in local timezone (CEST usually), not UTC

* speakeravailability commit of doom, originally intended for #385 but goes a bit further than that. Adds SpeakerAvailability and EventSession models, and models for the new autoscheduler. Update bootstrap script and more. New conference_autoscheduler dependency. Work in progress, but ready for playing around!

* add conference-scheduler to requirements

* rework migrations, work at bit with postgres range fields and bounds, change how speakeravailability is saved (continuous ranges instead of 1 hour chunks), add tests for utils/range_fields.py including adding hypothesis to requirements/dev.txt, add a test which runs our bootstrap script

* catch name collision in the right place, and load missing postgres extension in the migration

* add some verbosity to see what the travis issue might be

* manually create btree_gist extension in postgres, not sure why the BtreeGistExtension() operation in program/migrations/0085... isn't working in travis?

* create extension in the right database maybe

* lets try this then

* ok so the problem is not that the btree_gist extension isn't getting loaded, the problem is that GIST indexes do not work with uuid fields in postgres 9.6, lets take another stab at getting pg10 with postgis to work with in travis

* lets try normal socket connection

* add SPEAKER_AVAILABILITY_DAYCHUNK_HOURS=3 to travis environment_settings.py

* rework migrations, change so an autoschedule can work with multiple eventtypes, change AutoSlot model to use a DateTimeRangeField so we can use the database for more efficient lookups, add 'conflicts' self m2m for EventLocation to indicate when a room conflicts with another room, add a support_autoscheduling bool to EventType, add workshops to bootstrap script, add timing output to bootstrap script

* update README a bit, move some functionality to model methods, update jquery and jquery.datatables, include datatables in base.html instead of in each page, start adding backoffice schedule management views (unfinished), yolo commit so I can show valberg something

* Switch to a more simple way of using the autoscheduler, meaning we can remove the whole autoscheduler app and all models. All autoscheduler code is now in program/autoscheduler.py and a bit in backoffice views. Add more backoffice CRUD views for schedule management. Add datatables moment.js plugin to help table sorting of dates. Add Speaker{Proposal}EventConflict model to allow speakers to inform us which events they want to attend so we dont schedule them at the same time. Add EventTag model. New models not hooked up to anything yet.

* handle cases where there is no solution without failing, also dont return anything here

* wrong block kiddo

* switch from EventInstance to EventSlot as the way we schedule events. Finish backoffice content team views (mostly). Many small changes. Prod will need data migration of EventInstances -> EventSlots when the time comes.

* keep speakeravailability stuff a bit more DRY by using the AvailabilityMatrixViewMixin everywhere, add event_duration_minutes to EventSession create/update form, reverse the order we delete/create EventSlot objects when updating an EventSession

* go through all views, fix various little bugs here and there

* add missing migration

* add django-taggit, add tags for Events, add tags in bootstrap script, make AutoScheduler use tags. Add tags in forms and templates.

* fix taggit entry in requirements

* Fix our iCal view: Add uuid field to Event, add uuid property to EventSlot which calculates a consitent UUID for an event at a start time at a location. Use this as the schedule uuid. While here fix so our iCal export is valid, a few fields were missing, the iCal file now validates 100% OK.

* fix our FRAB xml export view

* comment the EventSlot.uuid property better

* typo in comment

* language

Co-Authored-By: Benjamin Balder Bach <benjamin@overtag.dk>

* language

Co-Authored-By: Benjamin Balder Bach <benjamin@overtag.dk>

* Update src/backoffice/templates/autoschedule_debug_events.html

Co-Authored-By: Benjamin Balder Bach <benjamin@overtag.dk>

* add a field to make this form look less weird. No difference in functionality.

* remove stray print and refactor this form init a bit

* fix ScheduleView

* only show slots where all speakers are available when scheduling events manually in backoffice

* make event list sortable by video recording column

* update description on {speaker|event}proposal models reason field

* remove badge showing number of scheduled slots for each event in backoffice eventlist. it was unclear what the number meant and it doesn't really fit

* remember to consider events in the same location when deciding whether a slot is available or not

* add is_available() method to EventLocation, add clean_location() method to EventSlot, call it from EventSlot.clean(), update a bit of text in eventslotunschedule template

* fix EventSession.get_available_slots() so it doesnt return busy slots as available, and since this means we can no longer schedule stuff in the lunchbreak lower the number of talks in the bootstrap script a bit so we have a better chance of having a solvable problem

* fix the excludefilter in EventSession.get_available_slots() for real this time, also fix an icon and add link in event schedule template in backoffice

* show message when no slots are available for manual scheduling in backoffice

* add event_conflicts to SpeakerUpdateView form in backoffice

* fix link to speaker object in speakerproposal list in backoffice

* allow blank tags

* make duration validation depend on the eventtype event_duration_minutes if we have one. fix help_text and label and placeholder for all duration fields

* allow music acts up to 180 mins in the bootstrap data

* fix wrong eventtype name for recreational events in speakerproposalform

* stretch the colspan one cell more

* save event_conflicts m2m when submitting speaker and event together

* form not self, and add succes message

* move js function toggleclass() to bornhack.js and rename to toggle_sa_form_class(), function is used in several templates and was missing when submitting combined proposals

* move the no-js removal to the top of ready() function

This will allow other javascript initialization (eg. DataTable) to see the elements and initialize accordingly (eg. column width for tables)

* Fixed problem with event feedback detail view

* Fixed problem with event feedback list view

* introduce a get_tzrange_days() function and use that to get the relevant days for the matrix instead of camp.get_days(), thereby fixing some display issues when eventsessions cross dates

* show submitting user and link to proposal on backoffice event detail page, change User to Submitter in backoffice speaker list table

* show warning by the buttons when a proposal cannot be approved, and show better text on approve/reject buttons

* disable js schedule, save m2m, prefetch some stuff

* fix broken date header in table

* remove use of djangos regular slugify function, use the new utils.slugs.unique_slugify() instead

Co-authored-by: Thomas Steen Rasmussen <tykling@bornhack.org>
Co-authored-by: Benjamin Balder Bach <benjamin@overtag.dk>
Co-authored-by: Thomas Flummer <tf@flummer.net>
2020-06-03 21:18:06 +02:00
Thomas Flummer 059127dd5c Small update to the migrate.py commands
Added python in front, to make sure it’s the virtualenv version of python that is used
2020-03-04 22:26:44 +01:00
Thomas Steen Rasmussen 12a1c9a0ce
Facilities (#458)
* update font-awesome to 5.12.1

* prefetch members to considerably lower number of SQL queries for team list view

* add facilities app with facility feeedback functionality, working on #383

* Add GeoDjango (django.contrib.gis) and switch to PostGIS db backend. Add location field for Facility model. Add django-leaflet to requirements.

* better migration names

* tweaking travis config, we use py3.7 now, and add postgis

* Add qr code support for facilities (visible in the admin). Make facitilies browsable without logging in. Feedback can be submitted without logging in, given the facility UUID, which is not revealed to unauthenticated users.

* show quickfeedback icons when creating and when reading feedback

* only show anon option if user is logged in

* django-reversion somehow went missing from requirements
2020-02-24 23:28:52 +01:00
Thomas Steen Rasmussen 1d24878ece add lgandersen to contributors in README.md 2019-07-21 15:06:19 +02:00
Víðir Valberg Guðmundsson f4a01f0b52
Adding travis and codecov badges 2019-03-29 21:00:34 +01:00
Víðir Valberg Guðmundsson 9ce09ffc3b
Adding Jeppe Ernst to list of contributors 2019-03-26 10:07:13 +01:00
Thomas Flummer 9f824ae11a added a bit of information for setting up on macOS (#283) 2018-11-20 00:17:17 +01:00
Benjamin Bach 12cf5905a5 rm dupe'ed instruction 2018-08-18 19:34:33 +02:00
Benjamin Bach 2673cd86e2 Add a development default settings file and modify instructions 2018-08-18 16:02:35 +02:00
Kasper Christensen 29a232301e
Updated path for pip requirements 2018-07-31 14:00:33 +02:00
Thomas Steen Rasmussen 139d2deff9
Make contrbutors a list 2018-03-04 15:55:18 +01:00
Thomas Steen Rasmussen e3297553e9
Add a Contributors section at the bottom of README 2018-03-04 15:54:20 +01:00
Thomas Steen Rasmussen 2a151a6a23
Remove old notes from README 2018-03-04 15:43:03 +01:00
Víðir Valberg Guðmundsson d4265edaa0 Remove docker compose setup, not working optimal. Might return later. 2017-11-23 21:47:10 +01:00
Víðir Valberg Guðmundsson 3e55c1dc8d Update readme. 2017-11-05 17:48:21 +01:00
Víðir Valberg Guðmundsson e514df89f2 Adding run target to the Makefile. 2017-11-05 17:46:26 +01:00
Víðir Valberg Guðmundsson 44d2ce22ab Got the site up running using docker-compose. Also added a Makefile for convenience. 2017-11-05 17:26:20 +01:00
Benjamin Bach 2b4f8ed3f9 Document the bootstrap-devsite command 2017-08-28 22:29:38 +02:00
Benjamin Bach bdf38b7407 Adding a camp is mandatory, specify how to add it 2017-08-28 22:11:30 +02:00
Benjamin Bach ab18d46bfe Note about adding submodules after cloning 2017-08-28 21:53:38 +02:00
Benjamin Bach 8c5d063b8b Add note about python3.. really annoying to forget 2017-08-28 21:41:16 +02:00
Benjamin Bach d3202fc1e2 Change README to match src/ structure 2017-08-28 21:28:27 +02:00
Stephan Telling 71f6dc85bf
update template names in readme 2017-06-04 13:12:05 +02:00
Kasper Christensen 0cadabf6b7 Updated path to environment_settings in README (#119)
merged, thanks!
2017-04-14 22:49:54 +02:00
Víðir Valberg Guðmundsson f1c324f003 Update README.md 2017-04-12 13:41:49 +02:00
Thomas Steen Rasmussen ff76c3e98e add missing dependency to README 2017-03-30 09:36:29 +02:00
Thomas Steen Rasmussen 529be396f4 fixup the shop to work in the new multicamp world, fix pdf generation, add new letterhead templates, rework invoiceworker into a generic worker runner 2017-03-28 00:12:11 +02:00
Thomas Steen Rasmussen 25aba076fb add info on cloning with --recursive to README 2017-03-26 09:56:13 +02:00
Stephan Telling 40a89ccf36
fix static -> static_src in createcamp command and readme 2017-01-31 23:30:31 +01:00
Stephan Telling 2fa98cb02e
add command to create dirs and html files for a new camp 2017-01-31 22:03:03 +01:00
Thomas Steen Rasmussen 57c6037e37 add freebsd package names to README 2017-01-31 18:52:40 +01:00
Thomas Steen Rasmussen 51e6dbdbcf update README to reflect that we now use py3 2017-01-30 12:26:33 +01:00
Thomas Steen Rasmussen 16052601a8 update readme with notes on prod migration 2017-01-28 21:01:19 +01:00
Stephan Telling f883a58a48
update readme with instructions to add a new camp 2017-01-28 19:32:25 +01:00
Stephan Telling bc55efd300
add postgres headers for debian 2017-01-28 17:06:46 +01:00
Thomas Steen Rasmussen 3125195554 update README 2017-01-20 17:47:10 +01:00
Thomas Steen Rasmussen b2cf4cf9ae rework settings stuff, README, env files 2016-11-09 09:55:15 +01:00
Benjamin Bach 3800b7daa4 Note to self: Don't assume you know, know that you know, then inform others 2016-08-30 11:37:38 +02:00
Benjamin Bach ef29e038b5 Improve the dev commands and add SQLite support 2016-08-29 20:43:50 +02:00
Benjamin Bach 8d329eb716 Fix migrations and create a developer script that sets necessary minimal env 2016-08-28 17:32:34 +02:00
Víðir Valberg Guðmundsson add35068af Improving the setup process a bit. 2016-07-03 14:27:31 +02:00
Thomas Steen Rasmussen 4b05f62765 more accurate README lol 2016-02-14 14:20:07 +01:00
Víðir Valberg Guðmundsson 91ca821831 Initial commit. 2015-10-03 03:07:05 +02:00