From 03403b48809763f914c15716d7705f76ffaccc3d Mon Sep 17 00:00:00 2001 From: Brad Busenius Date: Fri, 2 Aug 2024 10:21:24 -0500 Subject: [PATCH] Initial upgrade to Django 5.07 and Wagtail 6.1.3. --- Vagrantfile | 23 +++++++++++++-- bmrc/settings/base.py | 8 +----- bmrc/urls.py | 2 +- home/fixtures/dev.json | 2 +- home/migrations/0003_auto_20191018_2051.py | 6 ++-- home/migrations/0005_auto_20191022_1953.py | 6 ++-- home/migrations/0006_auto_20191023_2022.py | 6 ++-- home/models.py | 7 ++--- memb_collections/migrations/0001_initial.py | 8 +++--- .../migrations/0002_auto_20191204_1356.py | 6 ++-- memb_collections/models.py | 7 ++--- news/migrations/0001_initial.py | 6 ++-- news/migrations/0005_newssidebar.py | 4 +-- news/migrations/0006_newslettersignuppage.py | 6 ++-- news/migrations/0007_auto_20200820_2135.py | 8 +++--- .../0009_alter_newsstorypage_body.py | 6 ++-- .../0010_alter_newsstorypage_body.py | 6 ++-- news/models.py | 8 ++---- portal/admin.py | 11 ++++---- portal/migrations/0001_initial.py | 28 +++++++++---------- portal/migrations/0002_auto_20220121_1629.py | 8 +++--- portal/migrations/0003_auto_20230308_1833.py | 12 ++++---- portal/migrations/0004_auto_20231005_1859.py | 12 ++++---- portal/models.py | 10 ++----- requirements-dev.txt | 1 + requirements.txt | 7 ++--- search/views.py | 17 ++++++----- site_settings/migrations/0001_initial.py | 4 +-- site_settings/migrations/0002_alertbanner.py | 4 +-- site_settings/models.py | 4 +-- standard/migrations/0001_initial.py | 6 ++-- .../migrations/0002_auto_20191023_2322.py | 8 +++--- .../migrations/0003_auto_20191024_2110.py | 6 ++-- .../migrations/0004_auto_20200117_2147.py | 6 ++-- .../migrations/0005_auto_20200118_0243.py | 6 ++-- .../migrations/0006_auto_20200804_1910.py | 6 ++-- .../migrations/0007_auto_20200820_2135.py | 6 ++-- .../migrations/0008_auto_20210726_1829.py | 6 ++-- .../0010_alter_standardpage_body.py | 6 ++-- .../0011_alter_standardpage_body.py | 6 ++-- standard/models.py | 7 ++--- streams/blocks.py | 5 ++-- streams/wagtail_hooks.py | 2 +- 43 files changed, 162 insertions(+), 157 deletions(-) diff --git a/Vagrantfile b/Vagrantfile index 0515c36..55b408c 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -14,7 +14,7 @@ Vagrant.configure("2") do |config| # boxes at https://atlas.hashicorp.com/search. # https://app.vagrantup.com/ubuntu/boxes/jammy64 config.vm.box = "ubuntu/jammy64" - config.vm.box_version = "20230720.0.0" + config.vm.box_version = "20240720.0.1" # Disable automatic box update checking. If you disable this, then # boxes will only be checked for updates when the user runs @@ -78,11 +78,21 @@ Vagrant.configure("2") do |config| chown vagrant /var/log/django-errors.log chgrp vagrant /var/log/django-errors.log + # Jammy ships wih Python 10. We need Python 11. + # Remove this to go to Python 10 in the future. + echo "" + echo "============== Upgrading to Python 3.11 ==============" + apt-get install -y software-properties-common + add-apt-repository ppa:deadsnakes/ppa + apt-get install -y python3.11 + apt-get -y install python3.11-distutils + apt-get install -y python3-pip python3.11-dev python3.11-venv + # Install dependencies echo "" echo "=========== Installing dependencies ===========" apt-get update - apt-get install -y postgresql libpq-dev python3-pip python3.10-dev python3.10-distutils python3.10-venv + apt-get install -y postgresql libpq-dev # Create a Postgres user and database su - postgres -c "createuser -s vagrant" @@ -92,7 +102,7 @@ Vagrant.configure("2") do |config| echo "" echo "=========== Creating a Python virtualenv ===========" echo "..." - cd /home/vagrant && python3 -m venv bmrc + cd /home/vagrant && python3.11 -m venv bmrc echo "" echo "============== Installing linting and dev tools ==============" @@ -121,6 +131,13 @@ Vagrant.configure("2") do |config| su - vagrant -c "$PYTHON $PROJECT_DIR/manage.py migrate --noinput && \ $PYTHON $PROJECT_DIR/manage.py loaddata /vagrant/home/fixtures/dev.json" + + # Fix git permissions + echo "" + echo "============== Fixing git permissions ==============" + echo "..." + sudo chown -R vagrant /home/vagrant + # Add some dev sweetness echo "" echo "============== Simplicity for developers ==============" diff --git a/bmrc/settings/base.py b/bmrc/settings/base.py index 14d142c..2db1fad 100644 --- a/bmrc/settings/base.py +++ b/bmrc/settings/base.py @@ -39,7 +39,6 @@ 'wagtail.search.backends.database', 'wagtail.contrib.redirects', 'wagtail.contrib.settings', - 'wagtail.contrib.modeladmin', 'wagtail.embeds', 'wagtail.sites', 'wagtail.users', @@ -48,7 +47,7 @@ 'wagtail.images', 'wagtail.search', 'wagtail.admin', - 'wagtail.core', + 'wagtail', 'modelcluster', 'taggit', 'django.contrib.admin', @@ -57,7 +56,6 @@ 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles', - 'captcha', 'wagtailcaptcha', ] @@ -200,8 +198,4 @@ WAGTAIL_SITE_NAME = "bmrc" -# Base URL to use when referring to full URLs within the Wagtail admin backend - -# e.g. in notification emails. Don't include '/admin' or a trailing slash -BASE_URL = 'http://example.com' - TEST_RUNNER = 'portal.tests.NoDbDjangoTestSuiteRunner' diff --git a/bmrc/urls.py b/bmrc/urls.py index bcd0ba9..dc78bae 100644 --- a/bmrc/urls.py +++ b/bmrc/urls.py @@ -3,7 +3,7 @@ from django.contrib import admin from wagtail.admin import urls as wagtailadmin_urls -from wagtail.core import urls as wagtail_urls +from wagtail import urls as wagtail_urls from wagtail.documents import urls as wagtaildocs_urls from portal import views as portal_views diff --git a/home/fixtures/dev.json b/home/fixtures/dev.json index 75fd132..50c62e1 100644 --- a/home/fixtures/dev.json +++ b/home/fixtures/dev.json @@ -1 +1 @@ -[{"model": "home.homepage", "pk": 3, "fields": {"body": "[{\"id\": \"c639942c-720e-4519-a3d0-baf7e7e8a3e5\", \"type\": \"richtext\", \"value\": \"

This site is using a dev version of the database with mock content. It does not mirror the production site. If you want to add a page, user or other content to the database, just make the changes in Wagtail and export fixtures from your Vagrant shell:

\"}, {\"id\": \"88cc3bcb-5e48-49b1-b1c7-8e005d0d526f\", \"type\": \"new_row\", \"value\": {}}, {\"id\": \"cf76fcbd-c5b2-415d-b659-1f410ee2b2b0\", \"type\": \"richtext\", \"value\": \"

./manage.py dumpdata > home/fixtures/dev.json

\"}, {\"id\": \"6d681b95-4c50-42d3-8f16-3dedfc26f3da\", \"type\": \"new_row\", \"value\": {}}, {\"id\": \"8ac16ae5-4058-4cf2-bb87-5283b1ddb2ed\", \"type\": \"richtext\", \"value\": \"

Any changes you've made will be preserved in the dev database.

\"}]"}}, {"model": "portal.portalhomepage", "pk": 4, "fields": {"introduction": "

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

", "featured_exhibit": null, "about_the_bmrc": "

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

"}}, {"model": "standard.standardpage", "pk": 5, "fields": {"body": "[{\"id\": \"0874f51e-ecae-4e60-8a8e-c1b4fdbe9716\", \"type\": \"richtext\", \"value\": \"

Communication is not possible. The shuttle has no power. Using the gravitational pull of a star to slingshot back in time? We are going to Starbase Montgomery for Engineering consultations prompted by minor read-out anomalies. Probes have recorded unusual levels of geological activity in all five planetary systems. Assemble a team. Look at records of the Drema quadrant. Would these scans detect artificial transmissions as well as natural signals?

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

\"}]"}}, {"model": "standard.standardpage", "pk": 6, "fields": {"body": "[{\"id\": \"16df4301-90ac-468f-86dd-26bf07dd6bf9\", \"type\": \"richtext\", \"value\": \"

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

\"}]"}}, {"model": "standard.standardpage", "pk": 7, "fields": {"body": "[{\"id\": \"622fed0b-52d8-43f1-a81b-6330fd146632\", \"type\": \"richtext\", \"value\": \"

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

Sensors indicate human life forms 30 meters below the planet's surface. Stellar flares are increasing in magnitude and frequency. Set course for Rhomboid Dronegar 006, warp seven. There's no evidence of an advanced communication network. Total guidance system failure, with less than 24 hours' reserve power. Shield effectiveness has been reduced 12 percent. We have covered the area in a spherical pattern which a ship without warp drive could cross in the given time.

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

\"}]"}}, {"model": "standard.standardpage", "pk": 8, "fields": {"body": "[{\"id\": \"ac971196-6582-47d8-a45c-307b7a1cd42f\", \"type\": \"richtext\", \"value\": \"

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

It indicates a synchronic distortion in the areas emanating triolic waves. The cerebellum, the cerebral cortex, the brain stem, the entire nervous system has been depleted of electrochemical energy. Any device like that would produce high levels of triolic waves. These walls have undergone some kind of selective molecular polarization. I haven't determined if our phaser energy can generate a stable field. We could alter the photons with phase discriminators.

Communication is not possible. The shuttle has no power. Using the gravitational pull of a star to slingshot back in time? We are going to Starbase Montgomery for Engineering consultations prompted by minor read-out anomalies. Probes have recorded unusual levels of geological activity in all five planetary systems. Assemble a team. Look at records of the Drema quadrant. Would these scans detect artificial transmissions as well as natural signals?

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

Sensors indicate human life forms 30 meters below the planet's surface. Stellar flares are increasing in magnitude and frequency. Set course for Rhomboid Dronegar 006, warp seven. There's no evidence of an advanced communication network. Total guidance system failure, with less than 24 hours' reserve power. Shield effectiveness has been reduced 12 percent. We have covered the area in a spherical pattern which a ship without warp drive could cross in the given time.

\"}]"}}, {"model": "standard.standardpage", "pk": 9, "fields": {"body": "[{\"id\": \"bf317dd9-3440-48c1-afd4-dca2474a4bb4\", \"type\": \"richtext\", \"value\": \"

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

\"}]"}}, {"model": "standard.standardpage", "pk": 11, "fields": {"body": "[{\"id\": \"8c11c926-51ca-49d5-8065-73e9bfc5a7af\", \"type\": \"richtext\", \"value\": \"

It indicates a synchronic distortion in the areas emanating triolic waves. The cerebellum, the cerebral cortex, the brain stem, the entire nervous system has been depleted of electrochemical energy. Any device like that would produce high levels of triolic waves. These walls have undergone some kind of selective molecular polarization. I haven't determined if our phaser energy can generate a stable field. We could alter the photons with phase discriminators.

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

\"}]"}}, {"model": "standard.standardpage", "pk": 12, "fields": {"body": "[{\"id\": \"4613802b-fb81-479a-b8c5-f45ec826e2c1\", \"type\": \"richtext\", \"value\": \"

Communication is not possible. The shuttle has no power. Using the gravitational pull of a star to slingshot back in time? We are going to Starbase Montgomery for Engineering consultations prompted by minor read-out anomalies. Probes have recorded unusual levels of geological activity in all five planetary systems. Assemble a team. Look at records of the Drema quadrant. Would these scans detect artificial transmissions as well as natural signals?

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

\"}]"}}, {"model": "standard.standardpage", "pk": 13, "fields": {"body": "[{\"id\": \"8c448a52-734d-48f2-a801-37814f77fb5c\", \"type\": \"richtext\", \"value\": \"

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

\"}]"}}, {"model": "standard.standardpage", "pk": 14, "fields": {"body": "[{\"id\": \"a3011f60-f972-4e04-a4e1-60ebe5cc8cd0\", \"type\": \"richtext\", \"value\": \"

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

Sensors indicate human life forms 30 meters below the planet's surface. Stellar flares are increasing in magnitude and frequency. Set course for Rhomboid Dronegar 006, warp seven. There's no evidence of an advanced communication network. Total guidance system failure, with less than 24 hours' reserve power. Shield effectiveness has been reduced 12 percent. We have covered the area in a spherical pattern which a ship without warp drive could cross in the given time.

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

\"}]"}}, {"model": "standard.standardpage", "pk": 15, "fields": {"body": "[{\"id\": \"c6e69ede-45c1-4f1b-9de3-38d89e36f2ee\", \"type\": \"richtext\", \"value\": \"

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

\"}]"}}, {"model": "standard.standardpage", "pk": 16, "fields": {"body": "[{\"id\": \"fdf3adde-2d34-4f3a-8161-93a4c479d7fb\", \"type\": \"richtext\", \"value\": \"

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

\"}]"}}, {"model": "standard.standardpage", "pk": 17, "fields": {"body": "[{\"id\": \"c96740dd-b16e-423a-9089-a85344978845\", \"type\": \"richtext\", \"value\": \"

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

\"}]"}}, {"model": "standard.standardpage", "pk": 18, "fields": {"body": "[{\"id\": \"e22fafd7-a253-40dc-bdf3-514d5d077c8e\", \"type\": \"richtext\", \"value\": \"

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

\"}]"}}, {"model": "standard.standardpage", "pk": 19, "fields": {"body": "[{\"id\": \"6d02f2bb-0660-4863-a795-add1f7537663\", \"type\": \"richtext\", \"value\": \"

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

It indicates a synchronic distortion in the areas emanating triolic waves. The cerebellum, the cerebral cortex, the brain stem, the entire nervous system has been depleted of electrochemical energy. Any device like that would produce high levels of triolic waves. These walls have undergone some kind of selective molecular polarization. I haven't determined if our phaser energy can generate a stable field. We could alter the photons with phase discriminators.

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

\"}]"}}, {"model": "standard.standardpage", "pk": 20, "fields": {"body": "[{\"id\": \"c3e94698-d7ab-4166-b45c-c4732c836c25\", \"type\": \"richtext\", \"value\": \"

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

It indicates a synchronic distortion in the areas emanating triolic waves. The cerebellum, the cerebral cortex, the brain stem, the entire nervous system has been depleted of electrochemical energy. Any device like that would produce high levels of triolic waves. These walls have undergone some kind of selective molecular polarization. I haven't determined if our phaser energy can generate a stable field. We could alter the photons with phase discriminators.

\"}]"}}, {"model": "standard.standardpage", "pk": 21, "fields": {"body": "[{\"id\": \"f7ad7cd9-c845-4a02-a9ad-384bb172438b\", \"type\": \"richtext\", \"value\": \"

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

\"}]"}}, {"model": "standard.standardpage", "pk": 22, "fields": {"body": "[{\"id\": \"4f16cbf4-bad4-4d75-b919-f6b1cc50daec\", \"type\": \"richtext\", \"value\": \"

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

It indicates a synchronic distortion in the areas emanating triolic waves. The cerebellum, the cerebral cortex, the brain stem, the entire nervous system has been depleted of electrochemical energy. Any device like that would produce high levels of triolic waves. These walls have undergone some kind of selective molecular polarization. I haven't determined if our phaser energy can generate a stable field. We could alter the photons with phase discriminators.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

\"}]"}}, {"model": "standard.standardpage", "pk": 23, "fields": {"body": "[{\"id\": \"fba332d9-c1c0-40dd-a4c3-81ca6c7f71dd\", \"type\": \"richtext\", \"value\": \"

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

\"}]"}}, {"model": "news.newsindexpage", "pk": 10, "fields": {}}, {"model": "news.newsstorypage", "pk": 25, "fields": {"lead_image": null, "excerpt": "Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile.", "body": "[{\"id\": \"93487a81-d7da-4cfc-9f30-7313479c4973\", \"type\": \"richtext\", \"value\": \"

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

\"}]", "story_date": "2023-10-27"}}, {"model": "site_settings.footersettings", "pk": 1, "fields": {"site": 2, "facebook": null, "twitter": null, "instagram": null, "address": null}}, {"model": "site_settings.alertbanner", "pk": 1, "fields": {"site": 2, "enable": false, "alert_message": null, "alert_level": "alert-info"}}, {"model": "wagtailredirects.redirect", "pk": 1, "fields": {"old_path": "/about/current-members", "site": 2, "is_permanent": true, "redirect_page": 13, "redirect_page_route_path": "", "redirect_link": "", "automatically_created": true, "created_at": "2023-10-27T19:36:21.009Z"}}, {"model": "wagtailredirects.redirect", "pk": 2, "fields": {"old_path": "/about/members", "site": 2, "is_permanent": true, "redirect_page": 13, "redirect_page_route_path": "", "redirect_link": "", "automatically_created": true, "created_at": "2023-10-27T19:37:38.156Z"}}, {"model": "wagtailredirects.redirect", "pk": 3, "fields": {"old_path": "/about/resources", "site": 2, "is_permanent": true, "redirect_page": 17, "redirect_page_route_path": "", "redirect_link": "", "automatically_created": true, "created_at": "2023-10-27T19:47:03.724Z"}}, {"model": "wagtailusers.userprofile", "pk": 1, "fields": {"user": 1, "submitted_notifications": true, "approved_notifications": true, "rejected_notifications": true, "updated_comments_notifications": true, "preferred_language": "", "current_time_zone": "", "avatar": "", "dismissibles": {}}}, {"model": "wagtailsearch.indexentry", "pk": 1, "fields": {"content_type": 3, "object_id": "3", "title_norm": 1.5909090909090908, "autocomplete": "'home':1", "title": "'home':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 2, "fields": {"content_type": 1, "object_id": "1", "title_norm": 1.125, "autocomplete": "'root':1", "title": "'root':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 4, "fields": {"content_type": 11, "object_id": "4", "title_norm": 1.125, "autocomplete": "'portal':1", "title": "'portal':1B", "body": "'adjust':25 'allow':48 'antimatt':100 'appear':36 'band':32,64 'begun':72 'biofilt':171 'bomb':120 'calibr':76 'chamber':67 'characterist':113 'cmdr':142 'collect':52 'complex':183 'comput':88 'conduit':46 'contain':101,199 'coolant':14 'core':12 'correspond':184 'couldn':172 'crawlway':87 'critic':193 'decay':125 'deflector':1,59 'destruct':194 'detect':127 'deton':126 'diagnost':94 'discharg':6 'drive':98,104,141 'em':31 'energi':5 'engin':190 'escap':117 'establish':81 'exceed':65 'explos':202 'extract':174 'failur':15 'field':78 'fluctuat':16,130 'forc':77 'freighter':116 'frequenc':19,63,133 'function':57 'fuse':156 'futil':22 'guid':45 'harmon':27 'high':201 'immin':196 'increas':58 'intertwin':160 'invad':149 'ion':111 'k':182 'k-complex':181 'kind':40 'level':92,164 'level-two':91 'lift':85 'limit':69 'maximum':4 'microorgan':153 'modul':60 'molecular':124,163 'molecular-decay':123 'nerv':159 'nervous':145 'normal':106 'organ':155 'paramet':107 'perform':55 'phaser':17 'pod':118 'posit':102 'possibl':138 'power':2,43,74 'power-suppli':73 'power-wave-guid':42 'primari':13 'proceed':34 'reaction':66 'reactor':11 'read':109 'recommend':23 'rem':187 'resist':20 'reson':18 'riker':143 'robe':198 'run':89 'second':9 'section':191 'shield':26 'ship':56 'show':179 'six':8 'state':188 'subspac':132 'suppli':75 'system':99,146 'thermal':68 'trail':112 'transport':169,207 'turbo':84 'two':93 'ultritium':200 'undetect':204 'unknown':152 'unusu':129 'upper':30,62 'vertex':177 'virtual':203 'warp':10,97,103,140 'warp-driv':96 'wave':44,178 'within':105 'work':51"}}, {"model": "wagtailsearch.indexentry", "pk": 7, "fields": {"content_type": 19, "object_id": "5", "title_norm": 1.125, "autocomplete": "'programs':1", "title": "'program':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 10, "fields": {"content_type": 19, "object_id": "6", "title_norm": 1.125, "autocomplete": "'worf':1", "title": "'worf':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 13, "fields": {"content_type": 19, "object_id": "7", "title_norm": 1.125, "autocomplete": "'borg':1", "title": "'borg':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 18, "fields": {"content_type": 19, "object_id": "8", "title_norm": 1.125, "autocomplete": "'janeway':1", "title": "'janeway':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 21, "fields": {"content_type": 19, "object_id": "9", "title_norm": 0.5625, "autocomplete": "'initiative':2 'survey':1", "title": "'initi':2B 'survey':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 24, "fields": {"content_type": 21, "object_id": "10", "title_norm": 1.1111111111111112, "autocomplete": "'news':1", "title": "'news':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 29, "fields": {"content_type": 19, "object_id": "11", "title_norm": 1.0, "autocomplete": "'about':1", "title": "", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 32, "fields": {"content_type": 19, "object_id": "12", "title_norm": 0.6, "autocomplete": "'information':2 'membership':1", "title": "'inform':2B 'membership':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 35, "fields": {"content_type": 19, "object_id": "13", "title_norm": 0.6363636363636364, "autocomplete": "'current':1 'members':2", "title": "'current':1B 'member':2B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 43, "fields": {"content_type": 19, "object_id": "14", "title_norm": 1.25, "autocomplete": "'partnerships':1", "title": "'partnership':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 46, "fields": {"content_type": 19, "object_id": "15", "title_norm": 1.2307692307692308, "autocomplete": "'foo':1", "title": "'foo':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 49, "fields": {"content_type": 19, "object_id": "16", "title_norm": 1.2142857142857142, "autocomplete": "'staff':1", "title": "'staff':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 52, "fields": {"content_type": 19, "object_id": "17", "title_norm": 1.2, "autocomplete": "'resources':1", "title": "'resourc':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 56, "fields": {"content_type": 19, "object_id": "18", "title_norm": 0.34375, "autocomplete": "'bio':2 'bio-electronic':1 'electronic':3 'engineering':4", "title": "'bio':2B 'bio-electron':1B 'electron':3B 'engin':4B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 59, "fields": {"content_type": 19, "object_id": "19", "title_norm": 0.3823529411764706, "autocomplete": "'legacy':1 'management':2 'portal':4 'resources':3", "title": "'legaci':1B 'manag':2B 'portal':4B 'resourc':3B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 62, "fields": {"content_type": 19, "object_id": "20", "title_norm": 0.7777777777777778, "autocomplete": "'harmonic':1 'vibrations':2", "title": "'harmon':1B 'vibrat':2B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 65, "fields": {"content_type": 19, "object_id": "21", "title_norm": 0.7894736842105263, "autocomplete": "'phenomenon':2 'wormhole':1", "title": "'phenomenon':2B 'wormhol':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 68, "fields": {"content_type": 19, "object_id": "22", "title_norm": 0.8, "autocomplete": "'jobs':2 'space':1", "title": "'job':2B 'space':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 71, "fields": {"content_type": 19, "object_id": "23", "title_norm": 1.5714285714285714, "autocomplete": "'contact':1", "title": "'contact':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 77, "fields": {"content_type": 22, "object_id": "25", "title_norm": 0.8043478260869565, "autocomplete": "'materialized':1 'of':3 'out':2 'patterns':4", "title": "'materi':1B 'pattern':4B", "body": "'coolant':14 'core':12 'deflector':1 'discharg':6 'energi':5 'failur':15 'fluctuat':16 'frequenc':19 'futil':22 'maximum':4 'phaser':17 'power':2 'primari':13 'reactor':11 'resist':20 'reson':18 'second':9 'six':8 'warp':10"}}, {"model": "wagtailcore.locale", "pk": 1, "fields": {"language_code": "en"}}, {"model": "wagtailcore.site", "pk": 2, "fields": {"hostname": "localhost", "port": 80, "site_name": "", "root_page": 3, "is_default_site": true}}, {"model": "wagtailcore.collection", "pk": 1, "fields": {"path": "0001", "depth": 1, "numchild": 0, "name": "Root"}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 1, "fields": {"group": 1, "collection": 1, "permission": 1}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 2, "fields": {"group": 2, "collection": 1, "permission": 1}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 3, "fields": {"group": 1, "collection": 1, "permission": 2}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 4, "fields": {"group": 2, "collection": 1, "permission": 2}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 5, "fields": {"group": 1, "collection": 1, "permission": 6}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 6, "fields": {"group": 2, "collection": 1, "permission": 6}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 7, "fields": {"group": 1, "collection": 1, "permission": 7}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 8, "fields": {"group": 2, "collection": 1, "permission": 7}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 9, "fields": {"group": 1, "collection": 1, "permission": 9}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 10, "fields": {"group": 2, "collection": 1, "permission": 9}}, {"model": "wagtailcore.referenceindex", "pk": 1, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "1", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 2, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "1", "to_content_type": 1, "to_object_id": "4", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 3, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "2", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 4, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "2", "to_content_type": 1, "to_object_id": "5", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 5, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "3", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 6, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "3", "to_content_type": 1, "to_object_id": "6", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 7, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "4", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 8, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "4", "to_content_type": 1, "to_object_id": "7", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 9, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "5", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 10, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "5", "to_content_type": 1, "to_object_id": "8", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 11, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "6", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 12, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "6", "to_content_type": 1, "to_object_id": "9", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 13, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "7", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 14, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "7", "to_content_type": 1, "to_object_id": "10", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 15, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "8", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 16, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "8", "to_content_type": 1, "to_object_id": "11", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 17, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "9", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 18, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "9", "to_content_type": 1, "to_object_id": "12", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 19, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "10", "to_content_type": 1, "to_object_id": "13", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 20, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "10", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 21, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "11", "to_content_type": 1, "to_object_id": "14", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 22, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "11", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 23, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "12", "to_content_type": 1, "to_object_id": "15", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 24, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "12", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 25, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "13", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 26, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "13", "to_content_type": 1, "to_object_id": "16", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 27, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "14", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 28, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "14", "to_content_type": 1, "to_object_id": "17", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 29, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "15", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 30, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "15", "to_content_type": 1, "to_object_id": "18", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 31, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "16", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 32, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "16", "to_content_type": 1, "to_object_id": "19", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 33, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "17", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 34, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "17", "to_content_type": 1, "to_object_id": "20", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 35, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "18", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 36, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "18", "to_content_type": 1, "to_object_id": "21", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 37, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "19", "to_content_type": 1, "to_object_id": "22", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 38, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "19", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 39, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "20", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 40, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "20", "to_content_type": 1, "to_object_id": "23", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 43, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "22", "to_content_type": 1, "to_object_id": "25", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 44, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "22", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.referenceindex", "pk": 45, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "23", "to_content_type": 1, "to_object_id": "3", "model_path": "page", "content_path": "page", "content_path_hash": "7b295380-95fa-5117-92c0-23c46a06e9b7"}}, {"model": "wagtailcore.referenceindex", "pk": 46, "fields": {"content_type": 55, "base_content_type": 55, "object_id": "23", "to_content_type": 64, "to_object_id": "1", "model_path": "user", "content_path": "user", "content_path_hash": "b9395e53-5243-59fd-88fa-de4156683cf8"}}, {"model": "wagtailcore.page", "pk": 1, "fields": {"path": "0001", "depth": 1, "numchild": 1, "translation_key": "ea666d44-46cf-46cd-8485-8b13d8d8930e", "locale": 1, "latest_revision": null, "live": true, "has_unpublished_changes": false, "first_published_at": null, "last_published_at": null, "live_revision": null, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Root", "draft_title": "Root", "slug": "root", "content_type": 1, "url_path": "/", "owner": null, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": null, "alias_of": null}}, {"model": "wagtailcore.page", "pk": 3, "fields": {"path": "00010001", "depth": 2, "numchild": 6, "translation_key": "b814141d-14f0-46c3-b57a-f2c37a15200b", "locale": 1, "latest_revision": 30, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-27T23:02:05.386Z", "last_published_at": "2023-10-27T23:04:15.894Z", "live_revision": 30, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Home", "draft_title": "Home", "slug": "home", "content_type": 3, "url_path": "/home/", "owner": null, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-27T23:04:15.879Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 4, "fields": {"path": "000100010001", "depth": 3, "numchild": 0, "translation_key": "fe973d71-3dc5-4bd9-a5e7-66feb5c3cf35", "locale": 1, "latest_revision": 1, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-26T21:36:41.829Z", "last_published_at": "2023-10-26T21:36:41.829Z", "live_revision": 1, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Portal", "draft_title": "Portal", "slug": "portal", "content_type": 11, "url_path": "/home/portal/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-26T21:36:41.809Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 5, "fields": {"path": "000100010002", "depth": 3, "numchild": 4, "translation_key": "48983953-c2f6-4ef6-84ce-5cce53f3b62b", "locale": 1, "latest_revision": 2, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-26T21:38:32.273Z", "last_published_at": "2023-10-26T21:38:32.273Z", "live_revision": 2, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Programs", "draft_title": "Programs", "slug": "programs", "content_type": 19, "url_path": "/home/programs/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-26T21:38:32.260Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 6, "fields": {"path": "0001000100020001", "depth": 4, "numchild": 0, "translation_key": "ed90a915-a5c8-40e0-8170-158bc6746235", "locale": 1, "latest_revision": 3, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-26T21:40:49.333Z", "last_published_at": "2023-10-26T21:40:49.333Z", "live_revision": 3, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Worf", "draft_title": "Worf", "slug": "summer-short-term-fellowship", "content_type": 19, "url_path": "/home/programs/summer-short-term-fellowship/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-26T21:40:49.312Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 7, "fields": {"path": "0001000100020002", "depth": 4, "numchild": 0, "translation_key": "98e9c77d-0c00-420f-9a52-562237ac0a20", "locale": 1, "latest_revision": 5, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-26T21:41:38.540Z", "last_published_at": "2023-10-26T21:42:09.203Z", "live_revision": 5, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Borg", "draft_title": "Borg", "slug": "archie-motley-archival-internship-program", "content_type": 19, "url_path": "/home/programs/archie-motley-archival-internship-program/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-26T21:42:09.185Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 8, "fields": {"path": "0001000100020003", "depth": 4, "numchild": 0, "translation_key": "7ade89d2-5d7c-47c1-99ac-16cdab4d71cc", "locale": 1, "latest_revision": 6, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-26T21:54:35.185Z", "last_published_at": "2023-10-26T21:54:35.185Z", "live_revision": 6, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Janeway", "draft_title": "Janeway", "slug": "color-curtain-processing-project", "content_type": 19, "url_path": "/home/programs/color-curtain-processing-project/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-26T21:54:35.172Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 9, "fields": {"path": "0001000100020004", "depth": 4, "numchild": 0, "translation_key": "f3b54d54-02c5-4404-8e06-b9affd1c059d", "locale": 1, "latest_revision": 7, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-26T21:55:25.583Z", "last_published_at": "2023-10-26T21:55:25.583Z", "live_revision": 7, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Survey Initiative", "draft_title": "Survey Initiative", "slug": "survey-initiative", "content_type": 19, "url_path": "/home/programs/survey-initiative/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-26T21:55:25.570Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 10, "fields": {"path": "000100010003", "depth": 3, "numchild": 1, "translation_key": "bf0b1530-ee5b-4407-85e2-fab951043895", "locale": 1, "latest_revision": 9, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-26T21:56:35.434Z", "last_published_at": "2023-10-26T21:56:44.165Z", "live_revision": 9, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "News", "draft_title": "News", "slug": "news", "content_type": 21, "url_path": "/home/news/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-26T21:56:44.146Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 11, "fields": {"path": "000100010004", "depth": 3, "numchild": 5, "translation_key": "5f8533f5-4e56-4df1-854f-0c9f7ef2bd50", "locale": 1, "latest_revision": 10, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-26T21:57:28.224Z", "last_published_at": "2023-10-26T21:57:28.224Z", "live_revision": 10, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "About", "draft_title": "About", "slug": "about", "content_type": 19, "url_path": "/home/about/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-26T21:57:28.207Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 12, "fields": {"path": "0001000100040001", "depth": 4, "numchild": 0, "translation_key": "6fd0a930-d09b-44b7-8008-9b3b4a24b271", "locale": 1, "latest_revision": 11, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-27T19:34:54.140Z", "last_published_at": "2023-10-27T19:34:54.140Z", "live_revision": 11, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Membership Information", "draft_title": "Membership Information", "slug": "membership-information", "content_type": 19, "url_path": "/home/about/membership-information/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-27T19:34:54.125Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 13, "fields": {"path": "0001000100040002", "depth": 4, "numchild": 0, "translation_key": "9dada5f0-153c-402f-9936-61b5e1b20a95", "locale": 1, "latest_revision": 15, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-27T19:35:33.791Z", "last_published_at": "2023-10-27T19:37:38.127Z", "live_revision": 15, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Current Members", "draft_title": "Current Members", "slug": "membership", "content_type": 19, "url_path": "/home/about/membership/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-27T19:37:38.103Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 14, "fields": {"path": "0001000100040003", "depth": 4, "numchild": 0, "translation_key": "fa34714e-28b4-41ad-808e-623e365f5d23", "locale": 1, "latest_revision": 16, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-27T19:38:41.345Z", "last_published_at": "2023-10-27T19:38:41.345Z", "live_revision": 16, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Partnerships", "draft_title": "Partnerships", "slug": "partnerships", "content_type": 19, "url_path": "/home/about/partnerships/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-27T19:38:41.333Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 15, "fields": {"path": "0001000100040004", "depth": 4, "numchild": 0, "translation_key": "197767a7-3a1f-46b5-8dcd-9787d54b0e16", "locale": 1, "latest_revision": 17, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-27T19:44:06.580Z", "last_published_at": "2023-10-27T19:44:06.580Z", "live_revision": 17, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Foo", "draft_title": "Foo", "slug": "board-committees", "content_type": 19, "url_path": "/home/about/board-committees/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-27T19:44:06.562Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 16, "fields": {"path": "0001000100040005", "depth": 4, "numchild": 0, "translation_key": "2fd89a10-f746-4f12-9603-e0f5d2ba38ca", "locale": 1, "latest_revision": 18, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-27T19:44:38.560Z", "last_published_at": "2023-10-27T19:44:38.560Z", "live_revision": 18, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Staff", "draft_title": "Staff", "slug": "staff", "content_type": 19, "url_path": "/home/about/staff/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-27T19:44:38.545Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 17, "fields": {"path": "000100010005", "depth": 3, "numchild": 5, "translation_key": "31ea5b55-d9eb-4637-9b99-57e83d5d06cb", "locale": 1, "latest_revision": 19, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-27T19:45:49.041Z", "last_published_at": "2023-10-27T19:45:49.041Z", "live_revision": 19, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Resources", "draft_title": "Resources", "slug": "resources", "content_type": 19, "url_path": "/home/resources/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-27T19:45:49.026Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 18, "fields": {"path": "0001000100050001", "depth": 4, "numchild": 0, "translation_key": "bf5545c1-6f64-4efc-b79f-04d263bd159e", "locale": 1, "latest_revision": 20, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-27T20:06:05.273Z", "last_published_at": "2023-10-27T20:06:05.273Z", "live_revision": 20, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Bio-electronic Engineering", "draft_title": "Bio-electronic Engineering", "slug": "archives-awareness", "content_type": 19, "url_path": "/home/resources/archives-awareness/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-27T20:06:05.253Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 19, "fields": {"path": "0001000100050002", "depth": 4, "numchild": 0, "translation_key": "afd8026b-6bf1-46c8-ba9e-84cce6c70e8f", "locale": 1, "latest_revision": 21, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-27T20:06:59.456Z", "last_published_at": "2023-10-27T20:06:59.456Z", "live_revision": 21, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Legacy Management Resources Portal", "draft_title": "Legacy Management Resources Portal", "slug": "legacy-management-resources-portal", "content_type": 19, "url_path": "/home/resources/legacy-management-resources-portal/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-27T20:06:59.438Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 20, "fields": {"path": "0001000100050003", "depth": 4, "numchild": 0, "translation_key": "369310d4-4f61-4981-9c69-662e4ac18d73", "locale": 1, "latest_revision": 22, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-27T20:08:05.115Z", "last_published_at": "2023-10-27T20:08:05.115Z", "live_revision": 22, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Harmonic Vibrations", "draft_title": "Harmonic Vibrations", "slug": "protest-archives", "content_type": 19, "url_path": "/home/resources/protest-archives/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-27T20:08:05.102Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 21, "fields": {"path": "0001000100050004", "depth": 4, "numchild": 0, "translation_key": "49f0869d-314c-4786-abd8-5c3e18c80f96", "locale": 1, "latest_revision": 23, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-27T20:10:54.031Z", "last_published_at": "2023-10-27T20:10:54.031Z", "live_revision": 23, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Wormhole Phenomenon", "draft_title": "Wormhole Phenomenon", "slug": "workshops", "content_type": 19, "url_path": "/home/resources/workshops/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-27T20:10:54.017Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 22, "fields": {"path": "0001000100050005", "depth": 4, "numchild": 0, "translation_key": "d4fbfa4f-0e15-4807-ba20-40e45aa4afe7", "locale": 1, "latest_revision": 24, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-27T20:13:54.650Z", "last_published_at": "2023-10-27T20:13:54.650Z", "live_revision": 24, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Space Jobs", "draft_title": "Space Jobs", "slug": "jobs", "content_type": 19, "url_path": "/home/resources/jobs/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-27T20:13:54.635Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 23, "fields": {"path": "000100010006", "depth": 3, "numchild": 0, "translation_key": "fb2cace2-a443-4bc7-8a94-7e0461e3003b", "locale": 1, "latest_revision": 25, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-27T20:18:20.682Z", "last_published_at": "2023-10-27T20:18:20.682Z", "live_revision": 25, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Contact", "draft_title": "Contact", "slug": "contact", "content_type": 19, "url_path": "/home/contact/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-27T20:18:20.660Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 25, "fields": {"path": "0001000100030001", "depth": 4, "numchild": 0, "translation_key": "c8b25ede-d869-41e5-b5e5-349934ae92ba", "locale": 1, "latest_revision": 27, "live": true, "has_unpublished_changes": false, "first_published_at": "2023-10-27T20:23:22.518Z", "last_published_at": "2023-10-27T20:23:22.518Z", "live_revision": 27, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Materialized Out of Patterns", "draft_title": "Materialized Out of Patterns", "slug": "support-bmrc", "content_type": 22, "url_path": "/home/news/support-bmrc/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2023-10-27T20:23:22.501Z", "alias_of": null}}, {"model": "wagtailcore.revision", "pk": 1, "fields": {"content_type": 11, "base_content_type": 1, "object_id": "4", "submitted_for_moderation": false, "created_at": "2023-10-26T21:36:41.809Z", "user": 1, "object_str": "Portal", "content": {"pk": 4, "live": true, "path": "000100010001", "slug": "portal", "depth": 3, "owner": 1, "title": "Portal", "locale": 1, "locked": false, "expired": false, "alias_of": null, "numchild": 0, "url_path": "/home/portal/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Portal", "content_type": 11, "introduction": "

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

", "live_revision": null, "show_in_menus": false, "about_the_bmrc": "

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

", "latest_revision": null, "translation_key": "fe973d71-3dc5-4bd9-a5e7-66feb5c3cf35", "featured_exhibit": null, "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 2, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "5", "submitted_for_moderation": false, "created_at": "2023-10-26T21:38:32.260Z", "user": 1, "object_str": "Programs", "content": {"pk": 5, "body": "[{\"type\": \"richtext\", \"value\": \"

Communication is not possible. The shuttle has no power. Using the gravitational pull of a star to slingshot back in time? We are going to Starbase Montgomery for Engineering consultations prompted by minor read-out anomalies. Probes have recorded unusual levels of geological activity in all five planetary systems. Assemble a team. Look at records of the Drema quadrant. Would these scans detect artificial transmissions as well as natural signals?

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

\", \"id\": \"0874f51e-ecae-4e60-8a8e-c1b4fdbe9716\"}]", "live": true, "path": "000100010002", "slug": "programs", "depth": 3, "owner": 1, "title": "Programs", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/programs/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Programs", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "48983953-c2f6-4ef6-84ce-5cce53f3b62b", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 3, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "6", "submitted_for_moderation": false, "created_at": "2023-10-26T21:40:49.312Z", "user": 1, "object_str": "Worf", "content": {"pk": 6, "body": "[{\"type\": \"richtext\", \"value\": \"

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

\", \"id\": \"16df4301-90ac-468f-86dd-26bf07dd6bf9\"}]", "live": true, "path": "0001000100020001", "slug": "summer-short-term-fellowship", "depth": 4, "owner": 1, "title": "Worf", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/programs/summer-short-term-fellowship/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Worf", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "ed90a915-a5c8-40e0-8170-158bc6746235", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 4, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "7", "submitted_for_moderation": false, "created_at": "2023-10-26T21:41:38.527Z", "user": 1, "object_str": "Borg", "content": {"pk": 7, "body": "[]", "live": true, "path": "0001000100020002", "slug": "archie-motley-archival-internship-program", "depth": 4, "owner": 1, "title": "Borg", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/programs/archie-motley-archival-internship-program/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Borg", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "98e9c77d-0c00-420f-9a52-562237ac0a20", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 5, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "7", "submitted_for_moderation": false, "created_at": "2023-10-26T21:42:09.185Z", "user": 1, "object_str": "Borg", "content": {"pk": 7, "body": "[{\"type\": \"richtext\", \"value\": \"

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

Sensors indicate human life forms 30 meters below the planet's surface. Stellar flares are increasing in magnitude and frequency. Set course for Rhomboid Dronegar 006, warp seven. There's no evidence of an advanced communication network. Total guidance system failure, with less than 24 hours' reserve power. Shield effectiveness has been reduced 12 percent. We have covered the area in a spherical pattern which a ship without warp drive could cross in the given time.

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

\", \"id\": \"622fed0b-52d8-43f1-a81b-6330fd146632\"}]", "live": true, "path": "0001000100020002", "slug": "archie-motley-archival-internship-program", "depth": 4, "owner": 1, "title": "Borg", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/programs/archie-motley-archival-internship-program/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Borg", "content_type": 19, "live_revision": 4, "show_in_menus": false, "latest_revision": 4, "translation_key": "98e9c77d-0c00-420f-9a52-562237ac0a20", "last_published_at": "2023-10-26T21:41:38.540Z", "first_published_at": "2023-10-26T21:41:38.540Z", "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": "2023-10-26T21:41:38.527Z"}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 6, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "8", "submitted_for_moderation": false, "created_at": "2023-10-26T21:54:35.172Z", "user": 1, "object_str": "Janeway", "content": {"pk": 8, "body": "[{\"type\": \"richtext\", \"value\": \"

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

It indicates a synchronic distortion in the areas emanating triolic waves. The cerebellum, the cerebral cortex, the brain stem, the entire nervous system has been depleted of electrochemical energy. Any device like that would produce high levels of triolic waves. These walls have undergone some kind of selective molecular polarization. I haven't determined if our phaser energy can generate a stable field. We could alter the photons with phase discriminators.

Communication is not possible. The shuttle has no power. Using the gravitational pull of a star to slingshot back in time? We are going to Starbase Montgomery for Engineering consultations prompted by minor read-out anomalies. Probes have recorded unusual levels of geological activity in all five planetary systems. Assemble a team. Look at records of the Drema quadrant. Would these scans detect artificial transmissions as well as natural signals?

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

Sensors indicate human life forms 30 meters below the planet's surface. Stellar flares are increasing in magnitude and frequency. Set course for Rhomboid Dronegar 006, warp seven. There's no evidence of an advanced communication network. Total guidance system failure, with less than 24 hours' reserve power. Shield effectiveness has been reduced 12 percent. We have covered the area in a spherical pattern which a ship without warp drive could cross in the given time.

\", \"id\": \"ac971196-6582-47d8-a45c-307b7a1cd42f\"}]", "live": true, "path": "0001000100020003", "slug": "color-curtain-processing-project", "depth": 4, "owner": 1, "title": "Janeway", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/programs/color-curtain-processing-project/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Janeway", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "7ade89d2-5d7c-47c1-99ac-16cdab4d71cc", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 7, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "9", "submitted_for_moderation": false, "created_at": "2023-10-26T21:55:25.570Z", "user": 1, "object_str": "Survey Initiative", "content": {"pk": 9, "body": "[{\"type\": \"richtext\", \"value\": \"

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

\", \"id\": \"bf317dd9-3440-48c1-afd4-dca2474a4bb4\"}]", "live": true, "path": "0001000100020004", "slug": "survey-initiative", "depth": 4, "owner": 1, "title": "Survey Initiative", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/programs/survey-initiative/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Survey Initiative", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "f3b54d54-02c5-4404-8e06-b9affd1c059d", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 8, "fields": {"content_type": 21, "base_content_type": 1, "object_id": "10", "submitted_for_moderation": false, "created_at": "2023-10-26T21:56:35.418Z", "user": 1, "object_str": "NEws", "content": {"pk": 10, "live": true, "path": "000100010003", "slug": "news", "depth": 3, "owner": 1, "title": "NEws", "locale": 1, "locked": false, "expired": false, "alias_of": null, "numchild": 0, "url_path": "/home/news/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "NEws", "content_type": 21, "news_sidebar": [], "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "bf0b1530-ee5b-4407-85e2-fab951043895", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 9, "fields": {"content_type": 21, "base_content_type": 1, "object_id": "10", "submitted_for_moderation": false, "created_at": "2023-10-26T21:56:44.146Z", "user": 1, "object_str": "News", "content": {"pk": 10, "live": true, "path": "000100010003", "slug": "news", "depth": 3, "owner": 1, "title": "News", "locale": 1, "locked": false, "expired": false, "alias_of": null, "numchild": 0, "url_path": "/home/news/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "NEws", "content_type": 21, "news_sidebar": [], "live_revision": 8, "show_in_menus": false, "latest_revision": 8, "translation_key": "bf0b1530-ee5b-4407-85e2-fab951043895", "last_published_at": "2023-10-26T21:56:35.434Z", "first_published_at": "2023-10-26T21:56:35.434Z", "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": "2023-10-26T21:56:35.418Z"}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 10, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "11", "submitted_for_moderation": false, "created_at": "2023-10-26T21:57:28.207Z", "user": 1, "object_str": "About", "content": {"pk": 11, "body": "[{\"type\": \"richtext\", \"value\": \"

It indicates a synchronic distortion in the areas emanating triolic waves. The cerebellum, the cerebral cortex, the brain stem, the entire nervous system has been depleted of electrochemical energy. Any device like that would produce high levels of triolic waves. These walls have undergone some kind of selective molecular polarization. I haven't determined if our phaser energy can generate a stable field. We could alter the photons with phase discriminators.

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

\", \"id\": \"8c11c926-51ca-49d5-8065-73e9bfc5a7af\"}]", "live": true, "path": "000100010004", "slug": "about", "depth": 3, "owner": 1, "title": "About", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "About", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "5f8533f5-4e56-4df1-854f-0c9f7ef2bd50", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 11, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "12", "submitted_for_moderation": false, "created_at": "2023-10-27T19:34:54.125Z", "user": 1, "object_str": "Membership Information", "content": {"pk": 12, "body": "[{\"type\": \"richtext\", \"value\": \"

Communication is not possible. The shuttle has no power. Using the gravitational pull of a star to slingshot back in time? We are going to Starbase Montgomery for Engineering consultations prompted by minor read-out anomalies. Probes have recorded unusual levels of geological activity in all five planetary systems. Assemble a team. Look at records of the Drema quadrant. Would these scans detect artificial transmissions as well as natural signals?

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

\", \"id\": \"4613802b-fb81-479a-b8c5-f45ec826e2c1\"}]", "live": true, "path": "0001000100040001", "slug": "membership-information", "depth": 4, "owner": 1, "title": "Membership Information", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/membership-information/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Membership Information", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "6fd0a930-d09b-44b7-8008-9b3b4a24b271", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 12, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "13", "submitted_for_moderation": false, "created_at": "2023-10-27T19:35:33.775Z", "user": 1, "object_str": "Current Members", "content": {"pk": 13, "body": "[{\"type\": \"richtext\", \"value\": \"

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

\", \"id\": \"8c448a52-734d-48f2-a801-37814f77fb5c\"}]", "live": true, "path": "0001000100040002", "slug": "current-members", "depth": 4, "owner": 1, "title": "Current Members", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/current-members/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Current Members", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "9dada5f0-153c-402f-9936-61b5e1b20a95", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 13, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "13", "submitted_for_moderation": false, "created_at": "2023-10-27T19:36:20.962Z", "user": 1, "object_str": "Current Members", "content": {"pk": 13, "body": "[{\"type\": \"richtext\", \"value\": \"

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

\", \"id\": \"8c448a52-734d-48f2-a801-37814f77fb5c\"}]", "live": true, "path": "0001000100040002", "slug": "members", "depth": 4, "owner": 1, "title": "Current Members", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/current-members/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Current Members", "content_type": 19, "live_revision": 12, "show_in_menus": false, "latest_revision": 12, "translation_key": "9dada5f0-153c-402f-9936-61b5e1b20a95", "last_published_at": "2023-10-27T19:35:33.791Z", "first_published_at": "2023-10-27T19:35:33.791Z", "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": "2023-10-27T19:35:33.775Z"}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 14, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "13", "submitted_for_moderation": false, "created_at": "2023-10-27T19:36:44.144Z", "user": 1, "object_str": "Current Members", "content": {"pk": 13, "body": "[{\"type\": \"richtext\", \"value\": \"

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

\", \"id\": \"8c448a52-734d-48f2-a801-37814f77fb5c\"}]", "live": true, "path": "0001000100040002", "slug": "membership", "depth": 4, "owner": 1, "title": "Current Members", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/members/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Current Members", "content_type": 19, "live_revision": 13, "show_in_menus": false, "latest_revision": 13, "translation_key": "9dada5f0-153c-402f-9936-61b5e1b20a95", "last_published_at": "2023-10-27T19:36:20.985Z", "first_published_at": "2023-10-27T19:35:33.791Z", "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": "2023-10-27T19:36:20.962Z"}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 15, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "13", "submitted_for_moderation": false, "created_at": "2023-10-27T19:37:38.103Z", "user": 1, "object_str": "Current Members", "content": {"pk": 13, "body": "[{\"type\": \"richtext\", \"value\": \"

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

\", \"id\": \"8c448a52-734d-48f2-a801-37814f77fb5c\"}]", "live": true, "path": "0001000100040002", "slug": "membership", "depth": 4, "owner": 1, "title": "Current Members", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/membership/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Current Members", "content_type": 19, "live_revision": 13, "show_in_menus": false, "latest_revision": 14, "translation_key": "9dada5f0-153c-402f-9936-61b5e1b20a95", "last_published_at": "2023-10-27T19:36:20.985Z", "first_published_at": "2023-10-27T19:35:33.791Z", "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": true, "latest_revision_created_at": "2023-10-27T19:36:44.144Z"}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 16, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "14", "submitted_for_moderation": false, "created_at": "2023-10-27T19:38:41.333Z", "user": 1, "object_str": "Partnerships", "content": {"pk": 14, "body": "[{\"type\": \"richtext\", \"value\": \"

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

Sensors indicate human life forms 30 meters below the planet's surface. Stellar flares are increasing in magnitude and frequency. Set course for Rhomboid Dronegar 006, warp seven. There's no evidence of an advanced communication network. Total guidance system failure, with less than 24 hours' reserve power. Shield effectiveness has been reduced 12 percent. We have covered the area in a spherical pattern which a ship without warp drive could cross in the given time.

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

\", \"id\": \"a3011f60-f972-4e04-a4e1-60ebe5cc8cd0\"}]", "live": true, "path": "0001000100040003", "slug": "partnerships", "depth": 4, "owner": 1, "title": "Partnerships", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/partnerships/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Partnerships", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "fa34714e-28b4-41ad-808e-623e365f5d23", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 17, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "15", "submitted_for_moderation": false, "created_at": "2023-10-27T19:44:06.562Z", "user": 1, "object_str": "Foo", "content": {"pk": 15, "body": "[{\"type\": \"richtext\", \"value\": \"

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

\", \"id\": \"c6e69ede-45c1-4f1b-9de3-38d89e36f2ee\"}]", "live": true, "path": "0001000100040004", "slug": "board-committees", "depth": 4, "owner": 1, "title": "Foo", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/board-committees/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Foo", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "197767a7-3a1f-46b5-8dcd-9787d54b0e16", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 18, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "16", "submitted_for_moderation": false, "created_at": "2023-10-27T19:44:38.545Z", "user": 1, "object_str": "Staff", "content": {"pk": 16, "body": "[{\"type\": \"richtext\", \"value\": \"

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

\", \"id\": \"fdf3adde-2d34-4f3a-8161-93a4c479d7fb\"}]", "live": true, "path": "0001000100040005", "slug": "staff", "depth": 4, "owner": 1, "title": "Staff", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/staff/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Staff", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "2fd89a10-f746-4f12-9603-e0f5d2ba38ca", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 19, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "17", "submitted_for_moderation": false, "created_at": "2023-10-27T19:45:49.026Z", "user": 1, "object_str": "Resources", "content": {"pk": 17, "body": "[{\"type\": \"richtext\", \"value\": \"

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

\", \"id\": \"c96740dd-b16e-423a-9089-a85344978845\"}]", "live": true, "path": "0001000100040006", "slug": "resources", "depth": 4, "owner": 1, "title": "Resources", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/resources/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Resources", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "31ea5b55-d9eb-4637-9b99-57e83d5d06cb", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 20, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "18", "submitted_for_moderation": false, "created_at": "2023-10-27T20:06:05.253Z", "user": 1, "object_str": "Bio-electronic Engineering", "content": {"pk": 18, "body": "[{\"type\": \"richtext\", \"value\": \"

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

\", \"id\": \"e22fafd7-a253-40dc-bdf3-514d5d077c8e\"}]", "live": true, "path": "0001000100050001", "slug": "archives-awareness", "depth": 4, "owner": 1, "title": "Bio-electronic Engineering", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/resources/archives-awareness/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Bio-electronic Engineering", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "bf5545c1-6f64-4efc-b79f-04d263bd159e", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 21, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "19", "submitted_for_moderation": false, "created_at": "2023-10-27T20:06:59.438Z", "user": 1, "object_str": "Legacy Management Resources Portal", "content": {"pk": 19, "body": "[{\"type\": \"richtext\", \"value\": \"

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

It indicates a synchronic distortion in the areas emanating triolic waves. The cerebellum, the cerebral cortex, the brain stem, the entire nervous system has been depleted of electrochemical energy. Any device like that would produce high levels of triolic waves. These walls have undergone some kind of selective molecular polarization. I haven't determined if our phaser energy can generate a stable field. We could alter the photons with phase discriminators.

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

\", \"id\": \"6d02f2bb-0660-4863-a795-add1f7537663\"}]", "live": true, "path": "0001000100050002", "slug": "legacy-management-resources-portal", "depth": 4, "owner": 1, "title": "Legacy Management Resources Portal", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/resources/legacy-management-resources-portal/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Legacy Management Resources Portal", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "afd8026b-6bf1-46c8-ba9e-84cce6c70e8f", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 22, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "20", "submitted_for_moderation": false, "created_at": "2023-10-27T20:08:05.102Z", "user": 1, "object_str": "Harmonic Vibrations", "content": {"pk": 20, "body": "[{\"type\": \"richtext\", \"value\": \"

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

It indicates a synchronic distortion in the areas emanating triolic waves. The cerebellum, the cerebral cortex, the brain stem, the entire nervous system has been depleted of electrochemical energy. Any device like that would produce high levels of triolic waves. These walls have undergone some kind of selective molecular polarization. I haven't determined if our phaser energy can generate a stable field. We could alter the photons with phase discriminators.

\", \"id\": \"c3e94698-d7ab-4166-b45c-c4732c836c25\"}]", "live": true, "path": "0001000100050003", "slug": "protest-archives", "depth": 4, "owner": 1, "title": "Harmonic Vibrations", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/resources/protest-archives/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Harmonic Vibrations", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "369310d4-4f61-4981-9c69-662e4ac18d73", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 23, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "21", "submitted_for_moderation": false, "created_at": "2023-10-27T20:10:54.017Z", "user": 1, "object_str": "Wormhole Phenomenon", "content": {"pk": 21, "body": "[{\"type\": \"richtext\", \"value\": \"

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

\", \"id\": \"f7ad7cd9-c845-4a02-a9ad-384bb172438b\"}]", "live": true, "path": "0001000100050004", "slug": "workshops", "depth": 4, "owner": 1, "title": "Wormhole Phenomenon", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/resources/workshops/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Wormhole Phenomenon", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "49f0869d-314c-4786-abd8-5c3e18c80f96", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 24, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "22", "submitted_for_moderation": false, "created_at": "2023-10-27T20:13:54.635Z", "user": 1, "object_str": "Space Jobs", "content": {"pk": 22, "body": "[{\"type\": \"richtext\", \"value\": \"

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

It indicates a synchronic distortion in the areas emanating triolic waves. The cerebellum, the cerebral cortex, the brain stem, the entire nervous system has been depleted of electrochemical energy. Any device like that would produce high levels of triolic waves. These walls have undergone some kind of selective molecular polarization. I haven't determined if our phaser energy can generate a stable field. We could alter the photons with phase discriminators.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

\", \"id\": \"4f16cbf4-bad4-4d75-b919-f6b1cc50daec\"}]", "live": true, "path": "0001000100050005", "slug": "jobs", "depth": 4, "owner": 1, "title": "Space Jobs", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/resources/jobs/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Space Jobs", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "d4fbfa4f-0e15-4807-ba20-40e45aa4afe7", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 25, "fields": {"content_type": 19, "base_content_type": 1, "object_id": "23", "submitted_for_moderation": false, "created_at": "2023-10-27T20:18:20.660Z", "user": 1, "object_str": "Contact", "content": {"pk": 23, "body": "[{\"type\": \"richtext\", \"value\": \"

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

\", \"id\": \"fba332d9-c1c0-40dd-a4c3-81ca6c7f71dd\"}]", "live": true, "path": "000100010006", "slug": "contact", "depth": 3, "owner": 1, "title": "Contact", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/contact/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Contact", "content_type": 19, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "fb2cace2-a443-4bc7-8a94-7e0461e3003b", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 27, "fields": {"content_type": 22, "base_content_type": 1, "object_id": "25", "submitted_for_moderation": false, "created_at": "2023-10-27T20:23:22.501Z", "user": 1, "object_str": "Materialized Out of Patterns", "content": {"pk": 25, "body": "[{\"type\": \"richtext\", \"value\": \"

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

\", \"id\": \"93487a81-d7da-4cfc-9f30-7313479c4973\"}]", "live": true, "path": "0001000100030001", "slug": "support-bmrc", "depth": 4, "owner": 1, "title": "Materialized Out of Patterns", "locale": 1, "locked": false, "excerpt": "Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile.", "expired": false, "alias_of": null, "numchild": 0, "url_path": "/home/news/support-bmrc/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "lead_image": null, "story_date": "2023-10-27", "draft_title": "Materialized Out of Patterns", "content_type": 22, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "c8b25ede-d869-41e5-b5e5-349934ae92ba", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 28, "fields": {"content_type": 3, "base_content_type": 1, "object_id": "3", "submitted_for_moderation": false, "created_at": "2023-10-27T23:02:05.350Z", "user": 1, "object_str": "Home", "content": {"pk": 3, "body": "[{\"type\": \"richtext\", \"value\": \"

This site is using a dev version of the database with mock content. If you want to add a page, user or other content to the database, just make the changes in Wagtail and export fixtures from your Vagrant shell:

./manage.py dumpdata > home/fixtures/dev.json

Any changes you've made will be preserved in the dev database.

\", \"id\": \"c639942c-720e-4519-a3d0-baf7e7e8a3e5\"}]", "live": true, "path": "00010001", "slug": "home", "depth": 2, "owner": null, "title": "Home", "locale": 1, "locked": false, "expired": false, "alias_of": null, "numchild": 6, "url_path": "/home/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Home", "content_type": 3, "live_revision": null, "show_in_menus": false, "carousel_images": [], "latest_revision": null, "translation_key": "b814141d-14f0-46c3-b57a-f2c37a15200b", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 29, "fields": {"content_type": 3, "base_content_type": 1, "object_id": "3", "submitted_for_moderation": false, "created_at": "2023-10-27T23:03:30.490Z", "user": 1, "object_str": "Home", "content": {"pk": 3, "body": "[{\"type\": \"richtext\", \"value\": \"

This site is using a dev version of the database with mock content. If you want to add a page, user or other content to the database, just make the changes in Wagtail and export fixtures from your Vagrant shell:

\", \"id\": \"c639942c-720e-4519-a3d0-baf7e7e8a3e5\"}, {\"type\": \"new_row\", \"value\": {}, \"id\": \"88cc3bcb-5e48-49b1-b1c7-8e005d0d526f\"}, {\"type\": \"richtext\", \"value\": \"

./manage.py dumpdata > home/fixtures/dev.json

\", \"id\": \"cf76fcbd-c5b2-415d-b659-1f410ee2b2b0\"}, {\"type\": \"new_row\", \"value\": {}, \"id\": \"6d681b95-4c50-42d3-8f16-3dedfc26f3da\"}, {\"type\": \"richtext\", \"value\": \"

Any changes you've made will be preserved in the dev database.

\", \"id\": \"8ac16ae5-4058-4cf2-bb87-5283b1ddb2ed\"}]", "live": true, "path": "00010001", "slug": "home", "depth": 2, "owner": null, "title": "Home", "locale": 1, "locked": false, "expired": false, "alias_of": null, "numchild": 6, "url_path": "/home/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Home", "content_type": 3, "live_revision": 28, "show_in_menus": false, "carousel_images": [], "latest_revision": 28, "translation_key": "b814141d-14f0-46c3-b57a-f2c37a15200b", "last_published_at": "2023-10-27T23:02:05.386Z", "first_published_at": "2023-10-27T23:02:05.386Z", "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": "2023-10-27T23:02:05.350Z"}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 30, "fields": {"content_type": 3, "base_content_type": 1, "object_id": "3", "submitted_for_moderation": false, "created_at": "2023-10-27T23:04:15.879Z", "user": 1, "object_str": "Home", "content": {"pk": 3, "body": "[{\"type\": \"richtext\", \"value\": \"

This site is using a dev version of the database with mock content. It does not mirror the production site. If you want to add a page, user or other content to the database, just make the changes in Wagtail and export fixtures from your Vagrant shell:

\", \"id\": \"c639942c-720e-4519-a3d0-baf7e7e8a3e5\"}, {\"type\": \"new_row\", \"value\": {}, \"id\": \"88cc3bcb-5e48-49b1-b1c7-8e005d0d526f\"}, {\"type\": \"richtext\", \"value\": \"

./manage.py dumpdata > home/fixtures/dev.json

\", \"id\": \"cf76fcbd-c5b2-415d-b659-1f410ee2b2b0\"}, {\"type\": \"new_row\", \"value\": {}, \"id\": \"6d681b95-4c50-42d3-8f16-3dedfc26f3da\"}, {\"type\": \"richtext\", \"value\": \"

Any changes you've made will be preserved in the dev database.

\", \"id\": \"8ac16ae5-4058-4cf2-bb87-5283b1ddb2ed\"}]", "live": true, "path": "00010001", "slug": "home", "depth": 2, "owner": null, "title": "Home", "locale": 1, "locked": false, "expired": false, "alias_of": null, "numchild": 6, "url_path": "/home/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Home", "content_type": 3, "live_revision": 29, "show_in_menus": false, "carousel_images": [], "latest_revision": 29, "translation_key": "b814141d-14f0-46c3-b57a-f2c37a15200b", "last_published_at": "2023-10-27T23:03:30.506Z", "first_published_at": "2023-10-27T23:02:05.386Z", "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": "2023-10-27T23:03:30.490Z"}, "approved_go_live_at": null}}, {"model": "wagtailcore.grouppagepermission", "pk": 1, "fields": {"group": 1, "page": 1, "permission_type": "add"}}, {"model": "wagtailcore.grouppagepermission", "pk": 2, "fields": {"group": 1, "page": 1, "permission_type": "edit"}}, {"model": "wagtailcore.grouppagepermission", "pk": 3, "fields": {"group": 1, "page": 1, "permission_type": "publish"}}, {"model": "wagtailcore.grouppagepermission", "pk": 4, "fields": {"group": 2, "page": 1, "permission_type": "add"}}, {"model": "wagtailcore.grouppagepermission", "pk": 5, "fields": {"group": 2, "page": 1, "permission_type": "edit"}}, {"model": "wagtailcore.grouppagepermission", "pk": 6, "fields": {"group": 1, "page": 1, "permission_type": "lock"}}, {"model": "wagtailcore.grouppagepermission", "pk": 7, "fields": {"group": 1, "page": 1, "permission_type": "unlock"}}, {"model": "wagtailcore.workflowpage", "pk": 1, "fields": {"workflow": 1}}, {"model": "wagtailcore.workflowtask", "pk": 1, "fields": {"sort_order": 0, "workflow": 1, "task": 1}}, {"model": "wagtailcore.task", "pk": 1, "fields": {"name": "Moderators approval", "content_type": 4, "active": true}}, {"model": "wagtailcore.workflow", "pk": 1, "fields": {"name": "Moderators approval", "active": true}}, {"model": "wagtailcore.groupapprovaltask", "pk": 1, "fields": {"groups": [1]}}, {"model": "wagtailcore.pagelogentry", "pk": 1, "fields": {"content_type": 11, "label": "Portal", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-26T21:36:41.800Z", "uuid": "c5ec371f-6a72-411d-b954-e4e455237984", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 4}}, {"model": "wagtailcore.pagelogentry", "pk": 2, "fields": {"content_type": 11, "label": "Portal", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-26T21:36:41.849Z", "uuid": "c5ec371f-6a72-411d-b954-e4e455237984", "user": 1, "revision": 1, "content_changed": true, "deleted": false, "page": 4}}, {"model": "wagtailcore.pagelogentry", "pk": 3, "fields": {"content_type": 19, "label": "Programs", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-26T21:38:32.255Z", "uuid": "8a0f4ce2-17b7-4acf-8b0c-0cf1d8572f12", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 5}}, {"model": "wagtailcore.pagelogentry", "pk": 4, "fields": {"content_type": 19, "label": "Programs", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-26T21:38:32.286Z", "uuid": "8a0f4ce2-17b7-4acf-8b0c-0cf1d8572f12", "user": 1, "revision": 2, "content_changed": true, "deleted": false, "page": 5}}, {"model": "wagtailcore.pagelogentry", "pk": 5, "fields": {"content_type": 19, "label": "Worf", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-26T21:40:49.302Z", "uuid": "e0a1a14c-18b1-4afa-af09-5d36bf763343", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 6}}, {"model": "wagtailcore.pagelogentry", "pk": 6, "fields": {"content_type": 19, "label": "Worf", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-26T21:40:49.352Z", "uuid": "e0a1a14c-18b1-4afa-af09-5d36bf763343", "user": 1, "revision": 3, "content_changed": true, "deleted": false, "page": 6}}, {"model": "wagtailcore.pagelogentry", "pk": 7, "fields": {"content_type": 19, "label": "Borg", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-26T21:41:38.520Z", "uuid": "21e47782-29f9-467a-b931-60099f26e963", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 7}}, {"model": "wagtailcore.pagelogentry", "pk": 8, "fields": {"content_type": 19, "label": "Borg", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-26T21:41:38.556Z", "uuid": "21e47782-29f9-467a-b931-60099f26e963", "user": 1, "revision": 4, "content_changed": true, "deleted": false, "page": 7}}, {"model": "wagtailcore.pagelogentry", "pk": 9, "fields": {"content_type": 19, "label": "Borg", "action": "wagtail.edit", "data": {}, "timestamp": "2023-10-26T21:42:09.195Z", "uuid": "a517ac53-7e82-4259-a9c4-198df8c1a93c", "user": 1, "revision": 5, "content_changed": true, "deleted": false, "page": 7}}, {"model": "wagtailcore.pagelogentry", "pk": 10, "fields": {"content_type": 19, "label": "Borg", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-26T21:42:09.218Z", "uuid": "a517ac53-7e82-4259-a9c4-198df8c1a93c", "user": 1, "revision": 5, "content_changed": true, "deleted": false, "page": 7}}, {"model": "wagtailcore.pagelogentry", "pk": 11, "fields": {"content_type": 19, "label": "Janeway", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-26T21:54:35.165Z", "uuid": "9669ad63-6bf3-44bb-89d7-8aab67b54ee4", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 8}}, {"model": "wagtailcore.pagelogentry", "pk": 12, "fields": {"content_type": 19, "label": "Janeway", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-26T21:54:35.199Z", "uuid": "9669ad63-6bf3-44bb-89d7-8aab67b54ee4", "user": 1, "revision": 6, "content_changed": true, "deleted": false, "page": 8}}, {"model": "wagtailcore.pagelogentry", "pk": 13, "fields": {"content_type": 19, "label": "Survey Initiative", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-26T21:55:25.563Z", "uuid": "481d2dea-a361-4036-87dc-8be12b7fb23e", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 9}}, {"model": "wagtailcore.pagelogentry", "pk": 14, "fields": {"content_type": 19, "label": "Survey Initiative", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-26T21:55:25.596Z", "uuid": "481d2dea-a361-4036-87dc-8be12b7fb23e", "user": 1, "revision": 7, "content_changed": true, "deleted": false, "page": 9}}, {"model": "wagtailcore.pagelogentry", "pk": 15, "fields": {"content_type": 21, "label": "NEws", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-26T21:56:35.409Z", "uuid": "bc56c9e1-fdaa-4e43-8a08-c3559d07694d", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 10}}, {"model": "wagtailcore.pagelogentry", "pk": 16, "fields": {"content_type": 21, "label": "NEws", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-26T21:56:35.448Z", "uuid": "bc56c9e1-fdaa-4e43-8a08-c3559d07694d", "user": 1, "revision": 8, "content_changed": true, "deleted": false, "page": 10}}, {"model": "wagtailcore.pagelogentry", "pk": 17, "fields": {"content_type": 21, "label": "NEws", "action": "wagtail.edit", "data": {}, "timestamp": "2023-10-26T21:56:44.158Z", "uuid": "cff4884c-5072-43b9-ad62-8195e1a5e3d9", "user": 1, "revision": 9, "content_changed": true, "deleted": false, "page": 10}}, {"model": "wagtailcore.pagelogentry", "pk": 18, "fields": {"content_type": 21, "label": "News", "action": "wagtail.rename", "data": {"title": {"new": "News", "old": "NEws"}}, "timestamp": "2023-10-26T21:56:44.181Z", "uuid": "cff4884c-5072-43b9-ad62-8195e1a5e3d9", "user": 1, "revision": 9, "content_changed": false, "deleted": false, "page": 10}}, {"model": "wagtailcore.pagelogentry", "pk": 19, "fields": {"content_type": 21, "label": "News", "action": "wagtail.publish", "data": {"title": {"new": "News", "old": "NEws"}}, "timestamp": "2023-10-26T21:56:44.183Z", "uuid": "cff4884c-5072-43b9-ad62-8195e1a5e3d9", "user": 1, "revision": 9, "content_changed": true, "deleted": false, "page": 10}}, {"model": "wagtailcore.pagelogentry", "pk": 20, "fields": {"content_type": 19, "label": "About", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-26T21:57:28.198Z", "uuid": "55a9ab56-f5f4-4836-8d7e-d2382c06cd44", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 11}}, {"model": "wagtailcore.pagelogentry", "pk": 21, "fields": {"content_type": 19, "label": "About", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-26T21:57:28.240Z", "uuid": "55a9ab56-f5f4-4836-8d7e-d2382c06cd44", "user": 1, "revision": 10, "content_changed": true, "deleted": false, "page": 11}}, {"model": "wagtailcore.pagelogentry", "pk": 22, "fields": {"content_type": 19, "label": "Membership Information", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-27T19:34:54.114Z", "uuid": "6158c7c2-82bc-433b-8b21-19c98fb2907f", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 12}}, {"model": "wagtailcore.pagelogentry", "pk": 23, "fields": {"content_type": 19, "label": "Membership Information", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T19:34:54.158Z", "uuid": "6158c7c2-82bc-433b-8b21-19c98fb2907f", "user": 1, "revision": 11, "content_changed": true, "deleted": false, "page": 12}}, {"model": "wagtailcore.pagelogentry", "pk": 24, "fields": {"content_type": 19, "label": "Current Members", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-27T19:35:33.767Z", "uuid": "b2a9a5ab-4029-494c-a20c-cc8d8576d48e", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 13}}, {"model": "wagtailcore.pagelogentry", "pk": 25, "fields": {"content_type": 19, "label": "Current Members", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T19:35:33.808Z", "uuid": "b2a9a5ab-4029-494c-a20c-cc8d8576d48e", "user": 1, "revision": 12, "content_changed": true, "deleted": false, "page": 13}}, {"model": "wagtailcore.pagelogentry", "pk": 26, "fields": {"content_type": 19, "label": "Current Members", "action": "wagtail.edit", "data": {}, "timestamp": "2023-10-27T19:36:20.975Z", "uuid": "b81f225c-ce6a-413e-9a13-2ecea705779b", "user": 1, "revision": 13, "content_changed": true, "deleted": false, "page": 13}}, {"model": "wagtailcore.pagelogentry", "pk": 27, "fields": {"content_type": 19, "label": "Current Members", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T19:36:21.024Z", "uuid": "b81f225c-ce6a-413e-9a13-2ecea705779b", "user": 1, "revision": 13, "content_changed": true, "deleted": false, "page": 13}}, {"model": "wagtailcore.pagelogentry", "pk": 28, "fields": {"content_type": 19, "label": "Current Members", "action": "wagtail.edit", "data": {}, "timestamp": "2023-10-27T19:36:44.154Z", "uuid": "38fefafc-bb92-445d-86a8-d766456202ad", "user": 1, "revision": 14, "content_changed": true, "deleted": false, "page": 13}}, {"model": "wagtailcore.pagelogentry", "pk": 29, "fields": {"content_type": 19, "label": "Current Members", "action": "wagtail.edit", "data": {}, "timestamp": "2023-10-27T19:37:38.115Z", "uuid": "3605f8ca-4697-40c4-8a55-92e1791b8c99", "user": 1, "revision": 15, "content_changed": true, "deleted": false, "page": 13}}, {"model": "wagtailcore.pagelogentry", "pk": 30, "fields": {"content_type": 19, "label": "Current Members", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T19:37:38.160Z", "uuid": "3605f8ca-4697-40c4-8a55-92e1791b8c99", "user": 1, "revision": 15, "content_changed": false, "deleted": false, "page": 13}}, {"model": "wagtailcore.pagelogentry", "pk": 31, "fields": {"content_type": 19, "label": "Partnerships", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-27T19:38:41.327Z", "uuid": "7b269a4e-3b47-4c8a-89a5-bf7d1f422e58", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 14}}, {"model": "wagtailcore.pagelogentry", "pk": 32, "fields": {"content_type": 19, "label": "Partnerships", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T19:38:41.360Z", "uuid": "7b269a4e-3b47-4c8a-89a5-bf7d1f422e58", "user": 1, "revision": 16, "content_changed": true, "deleted": false, "page": 14}}, {"model": "wagtailcore.pagelogentry", "pk": 33, "fields": {"content_type": 19, "label": "Foo", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-27T19:44:06.552Z", "uuid": "71dcdde0-898f-483d-8160-fc94f2bcb892", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 15}}, {"model": "wagtailcore.pagelogentry", "pk": 34, "fields": {"content_type": 19, "label": "Foo", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T19:44:06.595Z", "uuid": "71dcdde0-898f-483d-8160-fc94f2bcb892", "user": 1, "revision": 17, "content_changed": true, "deleted": false, "page": 15}}, {"model": "wagtailcore.pagelogentry", "pk": 35, "fields": {"content_type": 19, "label": "Staff", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-27T19:44:38.538Z", "uuid": "d6b6696b-19b6-4b06-9887-7cba812090a7", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 16}}, {"model": "wagtailcore.pagelogentry", "pk": 36, "fields": {"content_type": 19, "label": "Staff", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T19:44:38.575Z", "uuid": "d6b6696b-19b6-4b06-9887-7cba812090a7", "user": 1, "revision": 18, "content_changed": true, "deleted": false, "page": 16}}, {"model": "wagtailcore.pagelogentry", "pk": 37, "fields": {"content_type": 19, "label": "Resources", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-27T19:45:49.017Z", "uuid": "38d14b02-96ba-4446-a549-5e2a886d4aa9", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 17}}, {"model": "wagtailcore.pagelogentry", "pk": 38, "fields": {"content_type": 19, "label": "Resources", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T19:45:49.056Z", "uuid": "38d14b02-96ba-4446-a549-5e2a886d4aa9", "user": 1, "revision": 19, "content_changed": true, "deleted": false, "page": 17}}, {"model": "wagtailcore.pagelogentry", "pk": 39, "fields": {"content_type": 19, "label": "Resources", "action": "wagtail.move", "data": {"source": {"id": 11, "title": "About"}, "destination": {"id": 3, "title": "Home"}}, "timestamp": "2023-10-27T19:47:03.725Z", "uuid": "8990ef86-c1ee-49e2-9ee2-58eef61aabce", "user": 1, "revision": null, "content_changed": false, "deleted": false, "page": 17}}, {"model": "wagtailcore.pagelogentry", "pk": 40, "fields": {"content_type": 19, "label": "Bio-electronic Engineering", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-27T20:06:05.242Z", "uuid": "f6284965-d1c8-4b4a-8603-298babc47a32", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 18}}, {"model": "wagtailcore.pagelogentry", "pk": 41, "fields": {"content_type": 19, "label": "Bio-electronic Engineering", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T20:06:05.289Z", "uuid": "f6284965-d1c8-4b4a-8603-298babc47a32", "user": 1, "revision": 20, "content_changed": true, "deleted": false, "page": 18}}, {"model": "wagtailcore.pagelogentry", "pk": 42, "fields": {"content_type": 19, "label": "Legacy Management Resources Portal", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-27T20:06:59.431Z", "uuid": "1090d917-a6aa-4a0b-bcc6-775ad7675d50", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 19}}, {"model": "wagtailcore.pagelogentry", "pk": 43, "fields": {"content_type": 19, "label": "Legacy Management Resources Portal", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T20:06:59.473Z", "uuid": "1090d917-a6aa-4a0b-bcc6-775ad7675d50", "user": 1, "revision": 21, "content_changed": true, "deleted": false, "page": 19}}, {"model": "wagtailcore.pagelogentry", "pk": 44, "fields": {"content_type": 19, "label": "Harmonic Vibrations", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-27T20:08:05.096Z", "uuid": "1db5e76c-7681-41a5-94a5-c832bb9f2e72", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 20}}, {"model": "wagtailcore.pagelogentry", "pk": 45, "fields": {"content_type": 19, "label": "Harmonic Vibrations", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T20:08:05.129Z", "uuid": "1db5e76c-7681-41a5-94a5-c832bb9f2e72", "user": 1, "revision": 22, "content_changed": true, "deleted": false, "page": 20}}, {"model": "wagtailcore.pagelogentry", "pk": 46, "fields": {"content_type": 19, "label": "Wormhole Phenomenon", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-27T20:10:54.009Z", "uuid": "d8069ff3-bcd9-4a65-8602-23187353668b", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 21}}, {"model": "wagtailcore.pagelogentry", "pk": 47, "fields": {"content_type": 19, "label": "Wormhole Phenomenon", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T20:10:54.050Z", "uuid": "d8069ff3-bcd9-4a65-8602-23187353668b", "user": 1, "revision": 23, "content_changed": true, "deleted": false, "page": 21}}, {"model": "wagtailcore.pagelogentry", "pk": 48, "fields": {"content_type": 19, "label": "Space Jobs", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-27T20:13:54.626Z", "uuid": "139fe737-241b-4c53-8975-491e693a7299", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 22}}, {"model": "wagtailcore.pagelogentry", "pk": 49, "fields": {"content_type": 19, "label": "Space Jobs", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T20:13:54.666Z", "uuid": "139fe737-241b-4c53-8975-491e693a7299", "user": 1, "revision": 24, "content_changed": true, "deleted": false, "page": 22}}, {"model": "wagtailcore.pagelogentry", "pk": 50, "fields": {"content_type": 19, "label": "Contact", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-27T20:18:20.649Z", "uuid": "a793bd8f-c12e-4ff9-b16c-16ad865b5427", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 23}}, {"model": "wagtailcore.pagelogentry", "pk": 51, "fields": {"content_type": 19, "label": "Contact", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T20:18:20.706Z", "uuid": "a793bd8f-c12e-4ff9-b16c-16ad865b5427", "user": 1, "revision": 25, "content_changed": true, "deleted": false, "page": 23}}, {"model": "wagtailcore.pagelogentry", "pk": 52, "fields": {"content_type": 19, "label": "Materialized Out of Patterns", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-27T20:19:23.700Z", "uuid": "d506d2ef-f4e5-4f10-9abf-640f64f5c7de", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 24}}, {"model": "wagtailcore.pagelogentry", "pk": 53, "fields": {"content_type": 19, "label": "Materialized Out of Patterns", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T20:19:23.761Z", "uuid": "d506d2ef-f4e5-4f10-9abf-640f64f5c7de", "user": 1, "revision": 26, "content_changed": true, "deleted": false, "page": 24}}, {"model": "wagtailcore.pagelogentry", "pk": 54, "fields": {"content_type": 22, "label": "Materialized Out of Patterns", "action": "wagtail.create", "data": {}, "timestamp": "2023-10-27T20:23:22.493Z", "uuid": "6880b39b-8f0a-486e-a1c4-b5c18eb2a962", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 25}}, {"model": "wagtailcore.pagelogentry", "pk": 55, "fields": {"content_type": 22, "label": "Materialized Out of Patterns", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T20:23:22.541Z", "uuid": "6880b39b-8f0a-486e-a1c4-b5c18eb2a962", "user": 1, "revision": 27, "content_changed": true, "deleted": false, "page": 25}}, {"model": "wagtailcore.pagelogentry", "pk": 56, "fields": {"content_type": 19, "label": "Materialized Out of Patterns", "action": "wagtail.delete", "data": {}, "timestamp": "2023-10-27T20:23:47.784Z", "uuid": "cace2e15-16c8-4ba8-bdab-9a8fe6217dcc", "user": 1, "revision": null, "content_changed": false, "deleted": true, "page": 24}}, {"model": "wagtailcore.pagelogentry", "pk": 57, "fields": {"content_type": 3, "label": "Home", "action": "wagtail.edit", "data": {}, "timestamp": "2023-10-27T23:02:05.377Z", "uuid": "9f6b8506-070c-4d5b-96e8-bf385121b04c", "user": 1, "revision": 28, "content_changed": true, "deleted": false, "page": 3}}, {"model": "wagtailcore.pagelogentry", "pk": 58, "fields": {"content_type": 3, "label": "Home", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T23:02:05.406Z", "uuid": "9f6b8506-070c-4d5b-96e8-bf385121b04c", "user": 1, "revision": 28, "content_changed": true, "deleted": false, "page": 3}}, {"model": "wagtailcore.pagelogentry", "pk": 59, "fields": {"content_type": 3, "label": "Home", "action": "wagtail.edit", "data": {}, "timestamp": "2023-10-27T23:03:30.499Z", "uuid": "4c8141b5-8950-4fc8-aaba-1239633307ad", "user": 1, "revision": 29, "content_changed": true, "deleted": false, "page": 3}}, {"model": "wagtailcore.pagelogentry", "pk": 60, "fields": {"content_type": 3, "label": "Home", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T23:03:30.521Z", "uuid": "4c8141b5-8950-4fc8-aaba-1239633307ad", "user": 1, "revision": 29, "content_changed": true, "deleted": false, "page": 3}}, {"model": "wagtailcore.pagelogentry", "pk": 61, "fields": {"content_type": 3, "label": "Home", "action": "wagtail.edit", "data": {}, "timestamp": "2023-10-27T23:04:15.887Z", "uuid": "fb201dc0-c709-4fe9-b49c-fbb0508c116b", "user": 1, "revision": 30, "content_changed": true, "deleted": false, "page": 3}}, {"model": "wagtailcore.pagelogentry", "pk": 62, "fields": {"content_type": 3, "label": "Home", "action": "wagtail.publish", "data": {}, "timestamp": "2023-10-27T23:04:15.909Z", "uuid": "fb201dc0-c709-4fe9-b49c-fbb0508c116b", "user": 1, "revision": 30, "content_changed": true, "deleted": false, "page": 3}}, {"model": "wagtailcore.pagesubscription", "pk": 1, "fields": {"user": 1, "page": 4, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 2, "fields": {"user": 1, "page": 5, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 3, "fields": {"user": 1, "page": 6, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 4, "fields": {"user": 1, "page": 7, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 5, "fields": {"user": 1, "page": 8, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 6, "fields": {"user": 1, "page": 9, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 7, "fields": {"user": 1, "page": 10, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 8, "fields": {"user": 1, "page": 11, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 9, "fields": {"user": 1, "page": 12, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 10, "fields": {"user": 1, "page": 13, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 11, "fields": {"user": 1, "page": 14, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 12, "fields": {"user": 1, "page": 15, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 13, "fields": {"user": 1, "page": 16, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 14, "fields": {"user": 1, "page": 17, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 15, "fields": {"user": 1, "page": 18, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 16, "fields": {"user": 1, "page": 19, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 17, "fields": {"user": 1, "page": 20, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 18, "fields": {"user": 1, "page": 21, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 19, "fields": {"user": 1, "page": 22, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 20, "fields": {"user": 1, "page": 23, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 22, "fields": {"user": 1, "page": 25, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 23, "fields": {"user": 1, "page": 3, "comment_notifications": false}}, {"model": "auth.permission", "pk": 1, "fields": {"name": "Can add image", "content_type": 2, "codename": "add_image"}}, {"model": "auth.permission", "pk": 2, "fields": {"name": "Can change image", "content_type": 2, "codename": "change_image"}}, {"model": "auth.permission", "pk": 3, "fields": {"name": "Can delete image", "content_type": 2, "codename": "delete_image"}}, {"model": "auth.permission", "pk": 4, "fields": {"name": "Can choose image", "content_type": 2, "codename": "choose_image"}}, {"model": "auth.permission", "pk": 5, "fields": {"name": "Can access Wagtail admin", "content_type": 5, "codename": "access_admin"}}, {"model": "auth.permission", "pk": 6, "fields": {"name": "Can add document", "content_type": 6, "codename": "add_document"}}, {"model": "auth.permission", "pk": 7, "fields": {"name": "Can change document", "content_type": 6, "codename": "change_document"}}, {"model": "auth.permission", "pk": 8, "fields": {"name": "Can delete document", "content_type": 6, "codename": "delete_document"}}, {"model": "auth.permission", "pk": 9, "fields": {"name": "Can choose document", "content_type": 6, "codename": "choose_document"}}, {"model": "auth.permission", "pk": 10, "fields": {"name": "Can add Home Page", "content_type": 3, "codename": "add_homepage"}}, {"model": "auth.permission", "pk": 11, "fields": {"name": "Can change Home Page", "content_type": 3, "codename": "change_homepage"}}, {"model": "auth.permission", "pk": 12, "fields": {"name": "Can delete Home Page", "content_type": 3, "codename": "delete_homepage"}}, {"model": "auth.permission", "pk": 13, "fields": {"name": "Can view Home Page", "content_type": 3, "codename": "view_homepage"}}, {"model": "auth.permission", "pk": 14, "fields": {"name": "Can add home page carousel images", "content_type": 7, "codename": "add_homepagecarouselimages"}}, {"model": "auth.permission", "pk": 15, "fields": {"name": "Can change home page carousel images", "content_type": 7, "codename": "change_homepagecarouselimages"}}, {"model": "auth.permission", "pk": 16, "fields": {"name": "Can delete home page carousel images", "content_type": 7, "codename": "delete_homepagecarouselimages"}}, {"model": "auth.permission", "pk": 17, "fields": {"name": "Can view home page carousel images", "content_type": 7, "codename": "view_homepagecarouselimages"}}, {"model": "auth.permission", "pk": 18, "fields": {"name": "Can add curated topic index page", "content_type": 8, "codename": "add_curatedtopicindexpage"}}, {"model": "auth.permission", "pk": 19, "fields": {"name": "Can change curated topic index page", "content_type": 8, "codename": "change_curatedtopicindexpage"}}, {"model": "auth.permission", "pk": 20, "fields": {"name": "Can delete curated topic index page", "content_type": 8, "codename": "delete_curatedtopicindexpage"}}, {"model": "auth.permission", "pk": 21, "fields": {"name": "Can view curated topic index page", "content_type": 8, "codename": "view_curatedtopicindexpage"}}, {"model": "auth.permission", "pk": 22, "fields": {"name": "Can add exhibit index page", "content_type": 9, "codename": "add_exhibitindexpage"}}, {"model": "auth.permission", "pk": 23, "fields": {"name": "Can change exhibit index page", "content_type": 9, "codename": "change_exhibitindexpage"}}, {"model": "auth.permission", "pk": 24, "fields": {"name": "Can delete exhibit index page", "content_type": 9, "codename": "delete_exhibitindexpage"}}, {"model": "auth.permission", "pk": 25, "fields": {"name": "Can view exhibit index page", "content_type": 9, "codename": "view_exhibitindexpage"}}, {"model": "auth.permission", "pk": 26, "fields": {"name": "Can add exhibit page", "content_type": 10, "codename": "add_exhibitpage"}}, {"model": "auth.permission", "pk": 27, "fields": {"name": "Can change exhibit page", "content_type": 10, "codename": "change_exhibitpage"}}, {"model": "auth.permission", "pk": 28, "fields": {"name": "Can delete exhibit page", "content_type": 10, "codename": "delete_exhibitpage"}}, {"model": "auth.permission", "pk": 29, "fields": {"name": "Can view exhibit page", "content_type": 10, "codename": "view_exhibitpage"}}, {"model": "auth.permission", "pk": 30, "fields": {"name": "Can add portal home page", "content_type": 11, "codename": "add_portalhomepage"}}, {"model": "auth.permission", "pk": 31, "fields": {"name": "Can change portal home page", "content_type": 11, "codename": "change_portalhomepage"}}, {"model": "auth.permission", "pk": 32, "fields": {"name": "Can delete portal home page", "content_type": 11, "codename": "delete_portalhomepage"}}, {"model": "auth.permission", "pk": 33, "fields": {"name": "Can view portal home page", "content_type": 11, "codename": "view_portalhomepage"}}, {"model": "auth.permission", "pk": 34, "fields": {"name": "Can add exhibit page side bar", "content_type": 12, "codename": "add_exhibitpagesidebar"}}, {"model": "auth.permission", "pk": 35, "fields": {"name": "Can change exhibit page side bar", "content_type": 12, "codename": "change_exhibitpagesidebar"}}, {"model": "auth.permission", "pk": 36, "fields": {"name": "Can delete exhibit page side bar", "content_type": 12, "codename": "delete_exhibitpagesidebar"}}, {"model": "auth.permission", "pk": 37, "fields": {"name": "Can view exhibit page side bar", "content_type": 12, "codename": "view_exhibitpagesidebar"}}, {"model": "auth.permission", "pk": 38, "fields": {"name": "Can add exhibit index side bar", "content_type": 13, "codename": "add_exhibitindexsidebar"}}, {"model": "auth.permission", "pk": 39, "fields": {"name": "Can change exhibit index side bar", "content_type": 13, "codename": "change_exhibitindexsidebar"}}, {"model": "auth.permission", "pk": 40, "fields": {"name": "Can delete exhibit index side bar", "content_type": 13, "codename": "delete_exhibitindexsidebar"}}, {"model": "auth.permission", "pk": 41, "fields": {"name": "Can view exhibit index side bar", "content_type": 13, "codename": "view_exhibitindexsidebar"}}, {"model": "auth.permission", "pk": 42, "fields": {"name": "Can add curated topic page", "content_type": 14, "codename": "add_curatedtopicpage"}}, {"model": "auth.permission", "pk": 43, "fields": {"name": "Can change curated topic page", "content_type": 14, "codename": "change_curatedtopicpage"}}, {"model": "auth.permission", "pk": 44, "fields": {"name": "Can delete curated topic page", "content_type": 14, "codename": "delete_curatedtopicpage"}}, {"model": "auth.permission", "pk": 45, "fields": {"name": "Can view curated topic page", "content_type": 14, "codename": "view_curatedtopicpage"}}, {"model": "auth.permission", "pk": 46, "fields": {"name": "Can add curated topic index side bar", "content_type": 15, "codename": "add_curatedtopicindexsidebar"}}, {"model": "auth.permission", "pk": 47, "fields": {"name": "Can change curated topic index side bar", "content_type": 15, "codename": "change_curatedtopicindexsidebar"}}, {"model": "auth.permission", "pk": 48, "fields": {"name": "Can delete curated topic index side bar", "content_type": 15, "codename": "delete_curatedtopicindexsidebar"}}, {"model": "auth.permission", "pk": 49, "fields": {"name": "Can view curated topic index side bar", "content_type": 15, "codename": "view_curatedtopicindexsidebar"}}, {"model": "auth.permission", "pk": 50, "fields": {"name": "Can add archive", "content_type": 16, "codename": "add_archive"}}, {"model": "auth.permission", "pk": 51, "fields": {"name": "Can change archive", "content_type": 16, "codename": "change_archive"}}, {"model": "auth.permission", "pk": 52, "fields": {"name": "Can delete archive", "content_type": 16, "codename": "delete_archive"}}, {"model": "auth.permission", "pk": 53, "fields": {"name": "Can view archive", "content_type": 16, "codename": "view_archive"}}, {"model": "auth.permission", "pk": 54, "fields": {"name": "Can add portal standard page", "content_type": 17, "codename": "add_portalstandardpage"}}, {"model": "auth.permission", "pk": 55, "fields": {"name": "Can change portal standard page", "content_type": 17, "codename": "change_portalstandardpage"}}, {"model": "auth.permission", "pk": 56, "fields": {"name": "Can delete portal standard page", "content_type": 17, "codename": "delete_portalstandardpage"}}, {"model": "auth.permission", "pk": 57, "fields": {"name": "Can view portal standard page", "content_type": 17, "codename": "view_portalstandardpage"}}, {"model": "auth.permission", "pk": 58, "fields": {"name": "Can add portal standard side bar", "content_type": 18, "codename": "add_portalstandardsidebar"}}, {"model": "auth.permission", "pk": 59, "fields": {"name": "Can change portal standard side bar", "content_type": 18, "codename": "change_portalstandardsidebar"}}, {"model": "auth.permission", "pk": 60, "fields": {"name": "Can delete portal standard side bar", "content_type": 18, "codename": "delete_portalstandardsidebar"}}, {"model": "auth.permission", "pk": 61, "fields": {"name": "Can view portal standard side bar", "content_type": 18, "codename": "view_portalstandardsidebar"}}, {"model": "auth.permission", "pk": 62, "fields": {"name": "Can add Standard Page", "content_type": 19, "codename": "add_standardpage"}}, {"model": "auth.permission", "pk": 63, "fields": {"name": "Can change Standard Page", "content_type": 19, "codename": "change_standardpage"}}, {"model": "auth.permission", "pk": 64, "fields": {"name": "Can delete Standard Page", "content_type": 19, "codename": "delete_standardpage"}}, {"model": "auth.permission", "pk": 65, "fields": {"name": "Can view Standard Page", "content_type": 19, "codename": "view_standardpage"}}, {"model": "auth.permission", "pk": 66, "fields": {"name": "Can add side bar", "content_type": 20, "codename": "add_sidebar"}}, {"model": "auth.permission", "pk": 67, "fields": {"name": "Can change side bar", "content_type": 20, "codename": "change_sidebar"}}, {"model": "auth.permission", "pk": 68, "fields": {"name": "Can delete side bar", "content_type": 20, "codename": "delete_sidebar"}}, {"model": "auth.permission", "pk": 69, "fields": {"name": "Can view side bar", "content_type": 20, "codename": "view_sidebar"}}, {"model": "auth.permission", "pk": 70, "fields": {"name": "Can add news index page", "content_type": 21, "codename": "add_newsindexpage"}}, {"model": "auth.permission", "pk": 71, "fields": {"name": "Can change news index page", "content_type": 21, "codename": "change_newsindexpage"}}, {"model": "auth.permission", "pk": 72, "fields": {"name": "Can delete news index page", "content_type": 21, "codename": "delete_newsindexpage"}}, {"model": "auth.permission", "pk": 73, "fields": {"name": "Can view news index page", "content_type": 21, "codename": "view_newsindexpage"}}, {"model": "auth.permission", "pk": 74, "fields": {"name": "Can add News Story", "content_type": 22, "codename": "add_newsstorypage"}}, {"model": "auth.permission", "pk": 75, "fields": {"name": "Can change News Story", "content_type": 22, "codename": "change_newsstorypage"}}, {"model": "auth.permission", "pk": 76, "fields": {"name": "Can delete News Story", "content_type": 22, "codename": "delete_newsstorypage"}}, {"model": "auth.permission", "pk": 77, "fields": {"name": "Can view News Story", "content_type": 22, "codename": "view_newsstorypage"}}, {"model": "auth.permission", "pk": 78, "fields": {"name": "Can add news side bar", "content_type": 23, "codename": "add_newssidebar"}}, {"model": "auth.permission", "pk": 79, "fields": {"name": "Can change news side bar", "content_type": 23, "codename": "change_newssidebar"}}, {"model": "auth.permission", "pk": 80, "fields": {"name": "Can delete news side bar", "content_type": 23, "codename": "delete_newssidebar"}}, {"model": "auth.permission", "pk": 81, "fields": {"name": "Can view news side bar", "content_type": 23, "codename": "view_newssidebar"}}, {"model": "auth.permission", "pk": 82, "fields": {"name": "Can add Newsletter Form", "content_type": 24, "codename": "add_newslettersignuppage"}}, {"model": "auth.permission", "pk": 83, "fields": {"name": "Can change Newsletter Form", "content_type": 24, "codename": "change_newslettersignuppage"}}, {"model": "auth.permission", "pk": 84, "fields": {"name": "Can delete Newsletter Form", "content_type": 24, "codename": "delete_newslettersignuppage"}}, {"model": "auth.permission", "pk": 85, "fields": {"name": "Can view Newsletter Form", "content_type": 24, "codename": "view_newslettersignuppage"}}, {"model": "auth.permission", "pk": 86, "fields": {"name": "Can add footer settings", "content_type": 25, "codename": "add_footersettings"}}, {"model": "auth.permission", "pk": 87, "fields": {"name": "Can change footer settings", "content_type": 25, "codename": "change_footersettings"}}, {"model": "auth.permission", "pk": 88, "fields": {"name": "Can delete footer settings", "content_type": 25, "codename": "delete_footersettings"}}, {"model": "auth.permission", "pk": 89, "fields": {"name": "Can view footer settings", "content_type": 25, "codename": "view_footersettings"}}, {"model": "auth.permission", "pk": 90, "fields": {"name": "Can add alert banner", "content_type": 26, "codename": "add_alertbanner"}}, {"model": "auth.permission", "pk": 91, "fields": {"name": "Can change alert banner", "content_type": 26, "codename": "change_alertbanner"}}, {"model": "auth.permission", "pk": 92, "fields": {"name": "Can delete alert banner", "content_type": 26, "codename": "delete_alertbanner"}}, {"model": "auth.permission", "pk": 93, "fields": {"name": "Can view alert banner", "content_type": 26, "codename": "view_alertbanner"}}, {"model": "auth.permission", "pk": 94, "fields": {"name": "Can add Member Collection Index Page", "content_type": 27, "codename": "add_membcollectionindexpage"}}, {"model": "auth.permission", "pk": 95, "fields": {"name": "Can change Member Collection Index Page", "content_type": 27, "codename": "change_membcollectionindexpage"}}, {"model": "auth.permission", "pk": 96, "fields": {"name": "Can delete Member Collection Index Page", "content_type": 27, "codename": "delete_membcollectionindexpage"}}, {"model": "auth.permission", "pk": 97, "fields": {"name": "Can view Member Collection Index Page", "content_type": 27, "codename": "view_membcollectionindexpage"}}, {"model": "auth.permission", "pk": 98, "fields": {"name": "Can add side bar", "content_type": 28, "codename": "add_sidebar"}}, {"model": "auth.permission", "pk": 99, "fields": {"name": "Can change side bar", "content_type": 28, "codename": "change_sidebar"}}, {"model": "auth.permission", "pk": 100, "fields": {"name": "Can delete side bar", "content_type": 28, "codename": "delete_sidebar"}}, {"model": "auth.permission", "pk": 101, "fields": {"name": "Can view side bar", "content_type": 28, "codename": "view_sidebar"}}, {"model": "auth.permission", "pk": 102, "fields": {"name": "Can add form submission", "content_type": 29, "codename": "add_formsubmission"}}, {"model": "auth.permission", "pk": 103, "fields": {"name": "Can change form submission", "content_type": 29, "codename": "change_formsubmission"}}, {"model": "auth.permission", "pk": 104, "fields": {"name": "Can delete form submission", "content_type": 29, "codename": "delete_formsubmission"}}, {"model": "auth.permission", "pk": 105, "fields": {"name": "Can view form submission", "content_type": 29, "codename": "view_formsubmission"}}, {"model": "auth.permission", "pk": 106, "fields": {"name": "Can add redirect", "content_type": 30, "codename": "add_redirect"}}, {"model": "auth.permission", "pk": 107, "fields": {"name": "Can change redirect", "content_type": 30, "codename": "change_redirect"}}, {"model": "auth.permission", "pk": 108, "fields": {"name": "Can delete redirect", "content_type": 30, "codename": "delete_redirect"}}, {"model": "auth.permission", "pk": 109, "fields": {"name": "Can view redirect", "content_type": 30, "codename": "view_redirect"}}, {"model": "auth.permission", "pk": 110, "fields": {"name": "Can add embed", "content_type": 31, "codename": "add_embed"}}, {"model": "auth.permission", "pk": 111, "fields": {"name": "Can change embed", "content_type": 31, "codename": "change_embed"}}, {"model": "auth.permission", "pk": 112, "fields": {"name": "Can delete embed", "content_type": 31, "codename": "delete_embed"}}, {"model": "auth.permission", "pk": 113, "fields": {"name": "Can view embed", "content_type": 31, "codename": "view_embed"}}, {"model": "auth.permission", "pk": 114, "fields": {"name": "Can add user profile", "content_type": 32, "codename": "add_userprofile"}}, {"model": "auth.permission", "pk": 115, "fields": {"name": "Can change user profile", "content_type": 32, "codename": "change_userprofile"}}, {"model": "auth.permission", "pk": 116, "fields": {"name": "Can delete user profile", "content_type": 32, "codename": "delete_userprofile"}}, {"model": "auth.permission", "pk": 117, "fields": {"name": "Can view user profile", "content_type": 32, "codename": "view_userprofile"}}, {"model": "auth.permission", "pk": 118, "fields": {"name": "Can view document", "content_type": 6, "codename": "view_document"}}, {"model": "auth.permission", "pk": 119, "fields": {"name": "Can add uploaded document", "content_type": 33, "codename": "add_uploadeddocument"}}, {"model": "auth.permission", "pk": 120, "fields": {"name": "Can change uploaded document", "content_type": 33, "codename": "change_uploadeddocument"}}, {"model": "auth.permission", "pk": 121, "fields": {"name": "Can delete uploaded document", "content_type": 33, "codename": "delete_uploadeddocument"}}, {"model": "auth.permission", "pk": 122, "fields": {"name": "Can view uploaded document", "content_type": 33, "codename": "view_uploadeddocument"}}, {"model": "auth.permission", "pk": 123, "fields": {"name": "Can view image", "content_type": 2, "codename": "view_image"}}, {"model": "auth.permission", "pk": 124, "fields": {"name": "Can add rendition", "content_type": 34, "codename": "add_rendition"}}, {"model": "auth.permission", "pk": 125, "fields": {"name": "Can change rendition", "content_type": 34, "codename": "change_rendition"}}, {"model": "auth.permission", "pk": 126, "fields": {"name": "Can delete rendition", "content_type": 34, "codename": "delete_rendition"}}, {"model": "auth.permission", "pk": 127, "fields": {"name": "Can view rendition", "content_type": 34, "codename": "view_rendition"}}, {"model": "auth.permission", "pk": 128, "fields": {"name": "Can add uploaded image", "content_type": 35, "codename": "add_uploadedimage"}}, {"model": "auth.permission", "pk": 129, "fields": {"name": "Can change uploaded image", "content_type": 35, "codename": "change_uploadedimage"}}, {"model": "auth.permission", "pk": 130, "fields": {"name": "Can delete uploaded image", "content_type": 35, "codename": "delete_uploadedimage"}}, {"model": "auth.permission", "pk": 131, "fields": {"name": "Can view uploaded image", "content_type": 35, "codename": "view_uploadedimage"}}, {"model": "auth.permission", "pk": 132, "fields": {"name": "Can add query", "content_type": 36, "codename": "add_query"}}, {"model": "auth.permission", "pk": 133, "fields": {"name": "Can change query", "content_type": 36, "codename": "change_query"}}, {"model": "auth.permission", "pk": 134, "fields": {"name": "Can delete query", "content_type": 36, "codename": "delete_query"}}, {"model": "auth.permission", "pk": 135, "fields": {"name": "Can view query", "content_type": 36, "codename": "view_query"}}, {"model": "auth.permission", "pk": 136, "fields": {"name": "Can add Query Daily Hits", "content_type": 37, "codename": "add_querydailyhits"}}, {"model": "auth.permission", "pk": 137, "fields": {"name": "Can change Query Daily Hits", "content_type": 37, "codename": "change_querydailyhits"}}, {"model": "auth.permission", "pk": 138, "fields": {"name": "Can delete Query Daily Hits", "content_type": 37, "codename": "delete_querydailyhits"}}, {"model": "auth.permission", "pk": 139, "fields": {"name": "Can view Query Daily Hits", "content_type": 37, "codename": "view_querydailyhits"}}, {"model": "auth.permission", "pk": 140, "fields": {"name": "Can add index entry", "content_type": 38, "codename": "add_indexentry"}}, {"model": "auth.permission", "pk": 141, "fields": {"name": "Can change index entry", "content_type": 38, "codename": "change_indexentry"}}, {"model": "auth.permission", "pk": 142, "fields": {"name": "Can delete index entry", "content_type": 38, "codename": "delete_indexentry"}}, {"model": "auth.permission", "pk": 143, "fields": {"name": "Can view index entry", "content_type": 38, "codename": "view_indexentry"}}, {"model": "auth.permission", "pk": 144, "fields": {"name": "Can add page", "content_type": 1, "codename": "add_page"}}, {"model": "auth.permission", "pk": 145, "fields": {"name": "Can change page", "content_type": 1, "codename": "change_page"}}, {"model": "auth.permission", "pk": 146, "fields": {"name": "Can delete page", "content_type": 1, "codename": "delete_page"}}, {"model": "auth.permission", "pk": 147, "fields": {"name": "Can view page", "content_type": 1, "codename": "view_page"}}, {"model": "auth.permission", "pk": 148, "fields": {"name": "Can add group page permission", "content_type": 39, "codename": "add_grouppagepermission"}}, {"model": "auth.permission", "pk": 149, "fields": {"name": "Can change group page permission", "content_type": 39, "codename": "change_grouppagepermission"}}, {"model": "auth.permission", "pk": 150, "fields": {"name": "Can delete group page permission", "content_type": 39, "codename": "delete_grouppagepermission"}}, {"model": "auth.permission", "pk": 151, "fields": {"name": "Can view group page permission", "content_type": 39, "codename": "view_grouppagepermission"}}, {"model": "auth.permission", "pk": 152, "fields": {"name": "Can add page view restriction", "content_type": 40, "codename": "add_pageviewrestriction"}}, {"model": "auth.permission", "pk": 153, "fields": {"name": "Can change page view restriction", "content_type": 40, "codename": "change_pageviewrestriction"}}, {"model": "auth.permission", "pk": 154, "fields": {"name": "Can delete page view restriction", "content_type": 40, "codename": "delete_pageviewrestriction"}}, {"model": "auth.permission", "pk": 155, "fields": {"name": "Can view page view restriction", "content_type": 40, "codename": "view_pageviewrestriction"}}, {"model": "auth.permission", "pk": 156, "fields": {"name": "Can add site", "content_type": 41, "codename": "add_site"}}, {"model": "auth.permission", "pk": 157, "fields": {"name": "Can change site", "content_type": 41, "codename": "change_site"}}, {"model": "auth.permission", "pk": 158, "fields": {"name": "Can delete site", "content_type": 41, "codename": "delete_site"}}, {"model": "auth.permission", "pk": 159, "fields": {"name": "Can view site", "content_type": 41, "codename": "view_site"}}, {"model": "auth.permission", "pk": 160, "fields": {"name": "Can add collection", "content_type": 42, "codename": "add_collection"}}, {"model": "auth.permission", "pk": 161, "fields": {"name": "Can change collection", "content_type": 42, "codename": "change_collection"}}, {"model": "auth.permission", "pk": 162, "fields": {"name": "Can delete collection", "content_type": 42, "codename": "delete_collection"}}, {"model": "auth.permission", "pk": 163, "fields": {"name": "Can view collection", "content_type": 42, "codename": "view_collection"}}, {"model": "auth.permission", "pk": 164, "fields": {"name": "Can add group collection permission", "content_type": 43, "codename": "add_groupcollectionpermission"}}, {"model": "auth.permission", "pk": 165, "fields": {"name": "Can change group collection permission", "content_type": 43, "codename": "change_groupcollectionpermission"}}, {"model": "auth.permission", "pk": 166, "fields": {"name": "Can delete group collection permission", "content_type": 43, "codename": "delete_groupcollectionpermission"}}, {"model": "auth.permission", "pk": 167, "fields": {"name": "Can view group collection permission", "content_type": 43, "codename": "view_groupcollectionpermission"}}, {"model": "auth.permission", "pk": 168, "fields": {"name": "Can add collection view restriction", "content_type": 44, "codename": "add_collectionviewrestriction"}}, {"model": "auth.permission", "pk": 169, "fields": {"name": "Can change collection view restriction", "content_type": 44, "codename": "change_collectionviewrestriction"}}, {"model": "auth.permission", "pk": 170, "fields": {"name": "Can delete collection view restriction", "content_type": 44, "codename": "delete_collectionviewrestriction"}}, {"model": "auth.permission", "pk": 171, "fields": {"name": "Can view collection view restriction", "content_type": 44, "codename": "view_collectionviewrestriction"}}, {"model": "auth.permission", "pk": 172, "fields": {"name": "Can add task", "content_type": 45, "codename": "add_task"}}, {"model": "auth.permission", "pk": 173, "fields": {"name": "Can change task", "content_type": 45, "codename": "change_task"}}, {"model": "auth.permission", "pk": 174, "fields": {"name": "Can delete task", "content_type": 45, "codename": "delete_task"}}, {"model": "auth.permission", "pk": 175, "fields": {"name": "Can view task", "content_type": 45, "codename": "view_task"}}, {"model": "auth.permission", "pk": 176, "fields": {"name": "Can add Task state", "content_type": 46, "codename": "add_taskstate"}}, {"model": "auth.permission", "pk": 177, "fields": {"name": "Can change Task state", "content_type": 46, "codename": "change_taskstate"}}, {"model": "auth.permission", "pk": 178, "fields": {"name": "Can delete Task state", "content_type": 46, "codename": "delete_taskstate"}}, {"model": "auth.permission", "pk": 179, "fields": {"name": "Can view Task state", "content_type": 46, "codename": "view_taskstate"}}, {"model": "auth.permission", "pk": 180, "fields": {"name": "Can add workflow", "content_type": 47, "codename": "add_workflow"}}, {"model": "auth.permission", "pk": 181, "fields": {"name": "Can change workflow", "content_type": 47, "codename": "change_workflow"}}, {"model": "auth.permission", "pk": 182, "fields": {"name": "Can delete workflow", "content_type": 47, "codename": "delete_workflow"}}, {"model": "auth.permission", "pk": 183, "fields": {"name": "Can view workflow", "content_type": 47, "codename": "view_workflow"}}, {"model": "auth.permission", "pk": 184, "fields": {"name": "Can add Group approval task", "content_type": 4, "codename": "add_groupapprovaltask"}}, {"model": "auth.permission", "pk": 185, "fields": {"name": "Can change Group approval task", "content_type": 4, "codename": "change_groupapprovaltask"}}, {"model": "auth.permission", "pk": 186, "fields": {"name": "Can delete Group approval task", "content_type": 4, "codename": "delete_groupapprovaltask"}}, {"model": "auth.permission", "pk": 187, "fields": {"name": "Can view Group approval task", "content_type": 4, "codename": "view_groupapprovaltask"}}, {"model": "auth.permission", "pk": 188, "fields": {"name": "Can add Workflow state", "content_type": 48, "codename": "add_workflowstate"}}, {"model": "auth.permission", "pk": 189, "fields": {"name": "Can change Workflow state", "content_type": 48, "codename": "change_workflowstate"}}, {"model": "auth.permission", "pk": 190, "fields": {"name": "Can delete Workflow state", "content_type": 48, "codename": "delete_workflowstate"}}, {"model": "auth.permission", "pk": 191, "fields": {"name": "Can view Workflow state", "content_type": 48, "codename": "view_workflowstate"}}, {"model": "auth.permission", "pk": 192, "fields": {"name": "Can add workflow page", "content_type": 49, "codename": "add_workflowpage"}}, {"model": "auth.permission", "pk": 193, "fields": {"name": "Can change workflow page", "content_type": 49, "codename": "change_workflowpage"}}, {"model": "auth.permission", "pk": 194, "fields": {"name": "Can delete workflow page", "content_type": 49, "codename": "delete_workflowpage"}}, {"model": "auth.permission", "pk": 195, "fields": {"name": "Can view workflow page", "content_type": 49, "codename": "view_workflowpage"}}, {"model": "auth.permission", "pk": 196, "fields": {"name": "Can add workflow task order", "content_type": 50, "codename": "add_workflowtask"}}, {"model": "auth.permission", "pk": 197, "fields": {"name": "Can change workflow task order", "content_type": 50, "codename": "change_workflowtask"}}, {"model": "auth.permission", "pk": 198, "fields": {"name": "Can delete workflow task order", "content_type": 50, "codename": "delete_workflowtask"}}, {"model": "auth.permission", "pk": 199, "fields": {"name": "Can view workflow task order", "content_type": 50, "codename": "view_workflowtask"}}, {"model": "auth.permission", "pk": 200, "fields": {"name": "Can add page log entry", "content_type": 51, "codename": "add_pagelogentry"}}, {"model": "auth.permission", "pk": 201, "fields": {"name": "Can change page log entry", "content_type": 51, "codename": "change_pagelogentry"}}, {"model": "auth.permission", "pk": 202, "fields": {"name": "Can delete page log entry", "content_type": 51, "codename": "delete_pagelogentry"}}, {"model": "auth.permission", "pk": 203, "fields": {"name": "Can view page log entry", "content_type": 51, "codename": "view_pagelogentry"}}, {"model": "auth.permission", "pk": 204, "fields": {"name": "Can add locale", "content_type": 52, "codename": "add_locale"}}, {"model": "auth.permission", "pk": 205, "fields": {"name": "Can change locale", "content_type": 52, "codename": "change_locale"}}, {"model": "auth.permission", "pk": 206, "fields": {"name": "Can delete locale", "content_type": 52, "codename": "delete_locale"}}, {"model": "auth.permission", "pk": 207, "fields": {"name": "Can view locale", "content_type": 52, "codename": "view_locale"}}, {"model": "auth.permission", "pk": 208, "fields": {"name": "Can add comment", "content_type": 53, "codename": "add_comment"}}, {"model": "auth.permission", "pk": 209, "fields": {"name": "Can change comment", "content_type": 53, "codename": "change_comment"}}, {"model": "auth.permission", "pk": 210, "fields": {"name": "Can delete comment", "content_type": 53, "codename": "delete_comment"}}, {"model": "auth.permission", "pk": 211, "fields": {"name": "Can view comment", "content_type": 53, "codename": "view_comment"}}, {"model": "auth.permission", "pk": 212, "fields": {"name": "Can add comment reply", "content_type": 54, "codename": "add_commentreply"}}, {"model": "auth.permission", "pk": 213, "fields": {"name": "Can change comment reply", "content_type": 54, "codename": "change_commentreply"}}, {"model": "auth.permission", "pk": 214, "fields": {"name": "Can delete comment reply", "content_type": 54, "codename": "delete_commentreply"}}, {"model": "auth.permission", "pk": 215, "fields": {"name": "Can view comment reply", "content_type": 54, "codename": "view_commentreply"}}, {"model": "auth.permission", "pk": 216, "fields": {"name": "Can add page subscription", "content_type": 55, "codename": "add_pagesubscription"}}, {"model": "auth.permission", "pk": 217, "fields": {"name": "Can change page subscription", "content_type": 55, "codename": "change_pagesubscription"}}, {"model": "auth.permission", "pk": 218, "fields": {"name": "Can delete page subscription", "content_type": 55, "codename": "delete_pagesubscription"}}, {"model": "auth.permission", "pk": 219, "fields": {"name": "Can view page subscription", "content_type": 55, "codename": "view_pagesubscription"}}, {"model": "auth.permission", "pk": 220, "fields": {"name": "Can add model log entry", "content_type": 56, "codename": "add_modellogentry"}}, {"model": "auth.permission", "pk": 221, "fields": {"name": "Can change model log entry", "content_type": 56, "codename": "change_modellogentry"}}, {"model": "auth.permission", "pk": 222, "fields": {"name": "Can delete model log entry", "content_type": 56, "codename": "delete_modellogentry"}}, {"model": "auth.permission", "pk": 223, "fields": {"name": "Can view model log entry", "content_type": 56, "codename": "view_modellogentry"}}, {"model": "auth.permission", "pk": 224, "fields": {"name": "Can add revision", "content_type": 57, "codename": "add_revision"}}, {"model": "auth.permission", "pk": 225, "fields": {"name": "Can change revision", "content_type": 57, "codename": "change_revision"}}, {"model": "auth.permission", "pk": 226, "fields": {"name": "Can delete revision", "content_type": 57, "codename": "delete_revision"}}, {"model": "auth.permission", "pk": 227, "fields": {"name": "Can view revision", "content_type": 57, "codename": "view_revision"}}, {"model": "auth.permission", "pk": 228, "fields": {"name": "Can add reference index", "content_type": 58, "codename": "add_referenceindex"}}, {"model": "auth.permission", "pk": 229, "fields": {"name": "Can change reference index", "content_type": 58, "codename": "change_referenceindex"}}, {"model": "auth.permission", "pk": 230, "fields": {"name": "Can delete reference index", "content_type": 58, "codename": "delete_referenceindex"}}, {"model": "auth.permission", "pk": 231, "fields": {"name": "Can view reference index", "content_type": 58, "codename": "view_referenceindex"}}, {"model": "auth.permission", "pk": 232, "fields": {"name": "Can add tag", "content_type": 59, "codename": "add_tag"}}, {"model": "auth.permission", "pk": 233, "fields": {"name": "Can change tag", "content_type": 59, "codename": "change_tag"}}, {"model": "auth.permission", "pk": 234, "fields": {"name": "Can delete tag", "content_type": 59, "codename": "delete_tag"}}, {"model": "auth.permission", "pk": 235, "fields": {"name": "Can view tag", "content_type": 59, "codename": "view_tag"}}, {"model": "auth.permission", "pk": 236, "fields": {"name": "Can add tagged item", "content_type": 60, "codename": "add_taggeditem"}}, {"model": "auth.permission", "pk": 237, "fields": {"name": "Can change tagged item", "content_type": 60, "codename": "change_taggeditem"}}, {"model": "auth.permission", "pk": 238, "fields": {"name": "Can delete tagged item", "content_type": 60, "codename": "delete_taggeditem"}}, {"model": "auth.permission", "pk": 239, "fields": {"name": "Can view tagged item", "content_type": 60, "codename": "view_taggeditem"}}, {"model": "auth.permission", "pk": 240, "fields": {"name": "Can add log entry", "content_type": 61, "codename": "add_logentry"}}, {"model": "auth.permission", "pk": 241, "fields": {"name": "Can change log entry", "content_type": 61, "codename": "change_logentry"}}, {"model": "auth.permission", "pk": 242, "fields": {"name": "Can delete log entry", "content_type": 61, "codename": "delete_logentry"}}, {"model": "auth.permission", "pk": 243, "fields": {"name": "Can view log entry", "content_type": 61, "codename": "view_logentry"}}, {"model": "auth.permission", "pk": 244, "fields": {"name": "Can add permission", "content_type": 62, "codename": "add_permission"}}, {"model": "auth.permission", "pk": 245, "fields": {"name": "Can change permission", "content_type": 62, "codename": "change_permission"}}, {"model": "auth.permission", "pk": 246, "fields": {"name": "Can delete permission", "content_type": 62, "codename": "delete_permission"}}, {"model": "auth.permission", "pk": 247, "fields": {"name": "Can view permission", "content_type": 62, "codename": "view_permission"}}, {"model": "auth.permission", "pk": 248, "fields": {"name": "Can add group", "content_type": 63, "codename": "add_group"}}, {"model": "auth.permission", "pk": 249, "fields": {"name": "Can change group", "content_type": 63, "codename": "change_group"}}, {"model": "auth.permission", "pk": 250, "fields": {"name": "Can delete group", "content_type": 63, "codename": "delete_group"}}, {"model": "auth.permission", "pk": 251, "fields": {"name": "Can view group", "content_type": 63, "codename": "view_group"}}, {"model": "auth.permission", "pk": 252, "fields": {"name": "Can add user", "content_type": 64, "codename": "add_user"}}, {"model": "auth.permission", "pk": 253, "fields": {"name": "Can change user", "content_type": 64, "codename": "change_user"}}, {"model": "auth.permission", "pk": 254, "fields": {"name": "Can delete user", "content_type": 64, "codename": "delete_user"}}, {"model": "auth.permission", "pk": 255, "fields": {"name": "Can view user", "content_type": 64, "codename": "view_user"}}, {"model": "auth.permission", "pk": 256, "fields": {"name": "Can add content type", "content_type": 65, "codename": "add_contenttype"}}, {"model": "auth.permission", "pk": 257, "fields": {"name": "Can change content type", "content_type": 65, "codename": "change_contenttype"}}, {"model": "auth.permission", "pk": 258, "fields": {"name": "Can delete content type", "content_type": 65, "codename": "delete_contenttype"}}, {"model": "auth.permission", "pk": 259, "fields": {"name": "Can view content type", "content_type": 65, "codename": "view_contenttype"}}, {"model": "auth.permission", "pk": 260, "fields": {"name": "Can add session", "content_type": 66, "codename": "add_session"}}, {"model": "auth.permission", "pk": 261, "fields": {"name": "Can change session", "content_type": 66, "codename": "change_session"}}, {"model": "auth.permission", "pk": 262, "fields": {"name": "Can delete session", "content_type": 66, "codename": "delete_session"}}, {"model": "auth.permission", "pk": 263, "fields": {"name": "Can view session", "content_type": 66, "codename": "view_session"}}, {"model": "auth.group", "pk": 1, "fields": {"name": "Moderators", "permissions": [5, 6, 7, 9, 8, 1, 2, 3]}}, {"model": "auth.group", "pk": 2, "fields": {"name": "Editors", "permissions": [5, 6, 7, 9, 8, 1, 2, 3]}}, {"model": "auth.user", "pk": 1, "fields": {"password": "pbkdf2_sha256$390000$WbP5q1eh2CNIgKFSqZLvB6$ztC7g8sMRoUF+y/xbNUthEIqKs1J7MPa1oYYBWwwUYY=", "last_login": "2023-10-26T21:34:19.459Z", "is_superuser": true, "username": "darthvader", "first_name": "", "last_name": "", "email": "vader@deathstar.org", "is_staff": true, "is_active": true, "date_joined": "2023-10-23T17:55:58.525Z", "groups": [], "user_permissions": []}}, {"model": "contenttypes.contenttype", "pk": 1, "fields": {"app_label": "wagtailcore", "model": "page"}}, {"model": "contenttypes.contenttype", "pk": 2, "fields": {"app_label": "wagtailimages", "model": "image"}}, {"model": "contenttypes.contenttype", "pk": 3, "fields": {"app_label": "home", "model": "homepage"}}, {"model": "contenttypes.contenttype", "pk": 4, "fields": {"app_label": "wagtailcore", "model": "groupapprovaltask"}}, {"model": "contenttypes.contenttype", "pk": 5, "fields": {"app_label": "wagtailadmin", "model": "admin"}}, {"model": "contenttypes.contenttype", "pk": 6, "fields": {"app_label": "wagtaildocs", "model": "document"}}, {"model": "contenttypes.contenttype", "pk": 7, "fields": {"app_label": "home", "model": "homepagecarouselimages"}}, {"model": "contenttypes.contenttype", "pk": 8, "fields": {"app_label": "portal", "model": "curatedtopicindexpage"}}, {"model": "contenttypes.contenttype", "pk": 9, "fields": {"app_label": "portal", "model": "exhibitindexpage"}}, {"model": "contenttypes.contenttype", "pk": 10, "fields": {"app_label": "portal", "model": "exhibitpage"}}, {"model": "contenttypes.contenttype", "pk": 11, "fields": {"app_label": "portal", "model": "portalhomepage"}}, {"model": "contenttypes.contenttype", "pk": 12, "fields": {"app_label": "portal", "model": "exhibitpagesidebar"}}, {"model": "contenttypes.contenttype", "pk": 13, "fields": {"app_label": "portal", "model": "exhibitindexsidebar"}}, {"model": "contenttypes.contenttype", "pk": 14, "fields": {"app_label": "portal", "model": "curatedtopicpage"}}, {"model": "contenttypes.contenttype", "pk": 15, "fields": {"app_label": "portal", "model": "curatedtopicindexsidebar"}}, {"model": "contenttypes.contenttype", "pk": 16, "fields": {"app_label": "portal", "model": "archive"}}, {"model": "contenttypes.contenttype", "pk": 17, "fields": {"app_label": "portal", "model": "portalstandardpage"}}, {"model": "contenttypes.contenttype", "pk": 18, "fields": {"app_label": "portal", "model": "portalstandardsidebar"}}, {"model": "contenttypes.contenttype", "pk": 19, "fields": {"app_label": "standard", "model": "standardpage"}}, {"model": "contenttypes.contenttype", "pk": 20, "fields": {"app_label": "standard", "model": "sidebar"}}, {"model": "contenttypes.contenttype", "pk": 21, "fields": {"app_label": "news", "model": "newsindexpage"}}, {"model": "contenttypes.contenttype", "pk": 22, "fields": {"app_label": "news", "model": "newsstorypage"}}, {"model": "contenttypes.contenttype", "pk": 23, "fields": {"app_label": "news", "model": "newssidebar"}}, {"model": "contenttypes.contenttype", "pk": 24, "fields": {"app_label": "news", "model": "newslettersignuppage"}}, {"model": "contenttypes.contenttype", "pk": 25, "fields": {"app_label": "site_settings", "model": "footersettings"}}, {"model": "contenttypes.contenttype", "pk": 26, "fields": {"app_label": "site_settings", "model": "alertbanner"}}, {"model": "contenttypes.contenttype", "pk": 27, "fields": {"app_label": "memb_collections", "model": "membcollectionindexpage"}}, {"model": "contenttypes.contenttype", "pk": 28, "fields": {"app_label": "memb_collections", "model": "sidebar"}}, {"model": "contenttypes.contenttype", "pk": 29, "fields": {"app_label": "wagtailforms", "model": "formsubmission"}}, {"model": "contenttypes.contenttype", "pk": 30, "fields": {"app_label": "wagtailredirects", "model": "redirect"}}, {"model": "contenttypes.contenttype", "pk": 31, "fields": {"app_label": "wagtailembeds", "model": "embed"}}, {"model": "contenttypes.contenttype", "pk": 32, "fields": {"app_label": "wagtailusers", "model": "userprofile"}}, {"model": "contenttypes.contenttype", "pk": 33, "fields": {"app_label": "wagtaildocs", "model": "uploadeddocument"}}, {"model": "contenttypes.contenttype", "pk": 34, "fields": {"app_label": "wagtailimages", "model": "rendition"}}, {"model": "contenttypes.contenttype", "pk": 35, "fields": {"app_label": "wagtailimages", "model": "uploadedimage"}}, {"model": "contenttypes.contenttype", "pk": 36, "fields": {"app_label": "wagtailsearch", "model": "query"}}, {"model": "contenttypes.contenttype", "pk": 37, "fields": {"app_label": "wagtailsearch", "model": "querydailyhits"}}, {"model": "contenttypes.contenttype", "pk": 38, "fields": {"app_label": "wagtailsearch", "model": "indexentry"}}, {"model": "contenttypes.contenttype", "pk": 39, "fields": {"app_label": "wagtailcore", "model": "grouppagepermission"}}, {"model": "contenttypes.contenttype", "pk": 40, "fields": {"app_label": "wagtailcore", "model": "pageviewrestriction"}}, {"model": "contenttypes.contenttype", "pk": 41, "fields": {"app_label": "wagtailcore", "model": "site"}}, {"model": "contenttypes.contenttype", "pk": 42, "fields": {"app_label": "wagtailcore", "model": "collection"}}, {"model": "contenttypes.contenttype", "pk": 43, "fields": {"app_label": "wagtailcore", "model": "groupcollectionpermission"}}, {"model": "contenttypes.contenttype", "pk": 44, "fields": {"app_label": "wagtailcore", "model": "collectionviewrestriction"}}, {"model": "contenttypes.contenttype", "pk": 45, "fields": {"app_label": "wagtailcore", "model": "task"}}, {"model": "contenttypes.contenttype", "pk": 46, "fields": {"app_label": "wagtailcore", "model": "taskstate"}}, {"model": "contenttypes.contenttype", "pk": 47, "fields": {"app_label": "wagtailcore", "model": "workflow"}}, {"model": "contenttypes.contenttype", "pk": 48, "fields": {"app_label": "wagtailcore", "model": "workflowstate"}}, {"model": "contenttypes.contenttype", "pk": 49, "fields": {"app_label": "wagtailcore", "model": "workflowpage"}}, {"model": "contenttypes.contenttype", "pk": 50, "fields": {"app_label": "wagtailcore", "model": "workflowtask"}}, {"model": "contenttypes.contenttype", "pk": 51, "fields": {"app_label": "wagtailcore", "model": "pagelogentry"}}, {"model": "contenttypes.contenttype", "pk": 52, "fields": {"app_label": "wagtailcore", "model": "locale"}}, {"model": "contenttypes.contenttype", "pk": 53, "fields": {"app_label": "wagtailcore", "model": "comment"}}, {"model": "contenttypes.contenttype", "pk": 54, "fields": {"app_label": "wagtailcore", "model": "commentreply"}}, {"model": "contenttypes.contenttype", "pk": 55, "fields": {"app_label": "wagtailcore", "model": "pagesubscription"}}, {"model": "contenttypes.contenttype", "pk": 56, "fields": {"app_label": "wagtailcore", "model": "modellogentry"}}, {"model": "contenttypes.contenttype", "pk": 57, "fields": {"app_label": "wagtailcore", "model": "revision"}}, {"model": "contenttypes.contenttype", "pk": 58, "fields": {"app_label": "wagtailcore", "model": "referenceindex"}}, {"model": "contenttypes.contenttype", "pk": 59, "fields": {"app_label": "taggit", "model": "tag"}}, {"model": "contenttypes.contenttype", "pk": 60, "fields": {"app_label": "taggit", "model": "taggeditem"}}, {"model": "contenttypes.contenttype", "pk": 61, "fields": {"app_label": "admin", "model": "logentry"}}, {"model": "contenttypes.contenttype", "pk": 62, "fields": {"app_label": "auth", "model": "permission"}}, {"model": "contenttypes.contenttype", "pk": 63, "fields": {"app_label": "auth", "model": "group"}}, {"model": "contenttypes.contenttype", "pk": 64, "fields": {"app_label": "auth", "model": "user"}}, {"model": "contenttypes.contenttype", "pk": 65, "fields": {"app_label": "contenttypes", "model": "contenttype"}}, {"model": "contenttypes.contenttype", "pk": 66, "fields": {"app_label": "sessions", "model": "session"}}, {"model": "sessions.session", "pk": "b04dvsomm38b7nliypmd5zbizcmk23ep", "fields": {"session_data": ".eJxVjEEOwiAQRe_C2pApFAsu3XsGwgyDRQ2Y0iYa4921SRe6_e_99xI-LPPol8aTz1EcRCd2vxsGunJZQbyEcq6SapmnjHJV5EabPNXIt-Pm_gXG0MbvGxRDSM5oBMDQGWUspkRkAQzqISY3MAWr7B6VI41R9anXidXgmJzTa7Rxa7kWz497np7iAO8Pmsk_cQ:1quzA3:oo-lQuE6AJozu6XY_wm8HhrsbwGGCiMSxevJ8k8diJE", "expire_date": "2023-11-06T17:56:19.399Z"}}, {"model": "sessions.session", "pk": "x8aofzsica4qpqriworlppuxw5dl33lo", "fields": {"session_data": ".eJztW2tT3DgW_S9UwRePu_xsu6eKD4TAhAyPBEhIsjVFyZbcFtiSkeTuNlv73_deuQ1Mh2Ty2CzDhFSlCst63r7n3Hsk-d9r56Q15XmrmTrndO3XNX_tl7tlGckvmcAX9IKIqRzlUhjFsxFWGS3f6tGBpKx6tqz7pw5Kokto7QXMI8UkDjPPy4gfB3GaFUWep54XZ2FCi0nCcpIG6TgLJnmY0SAqorBgQTJh-WQSYqeaac2lOGeLhqtu7Vfvl7U5mRrCK7dRbMbZ3PXDtV__tZZrVdSc0orNiWJGwqw2u3cfnh168cX2y5C_uP6wH_PZaeL9tq3Z25fHPp1fX5xUu9dNeqxPfj_hl9fRB_Ji6_0R2VUl1d3R1oZgC7O5kcu6ZsKcC2l4wXNiYEJ6U4oNw03FNrdbpeC1c8DqjCm9kUnaublshdn0-wfPBUsxw-jm8CwVZWrTGx5N17BNxfPSwIBDIaebaR5FKYkDNwkj6kZpEbgk9Xw3TFI_KpKkyOJ8qD4jVcs215Nn697zdW_LgX_rQZBVMr_U8Md6uOWsx3de2grJSsGy1SXrhiZBQJp5QfAx2L63Mk7-tnYrtOkqRj_TgLLGlMsW3id7BUvc9rqzyBmjXEwdxUiOP4CTlwTt7ZiSqZpUTsVrbkbOGXNKMmNOxqatcBo5Z8rVbdNUnZOTimfK_nwjZ1eqnDkFZxXVQwsmHKYNySquS0YdGIRUlWNalUnovjDaIYI6uSLzak46PXK2Zd20hilYhKNgOOJUbMYq18ylQzmZCqkNz7EjcMrGpYrDOLrThtXQeksYXhMD7R1EGOEC3QzmrLmBirAWaOT0jebclFw4Qtq1NkSRGhxKQS97aBIKM3PQKkYBNNA2CszEFO_HL2BmhWJ8WuJgTOekYTAOHTmnJSxc1hmYAPpwalmxvK2IAo_NSedQQJIgRqqR8xzGA8vDT6BlzZxWtLqFqRRVm5u2x4QDM9RtphuCplXsqmUi50yPPuMMXFRcsBP0mWMgG3bXV-Pnn2oFduKmu6_Bin9_3MMX-Xymw-JzLvz_8PlHZ7TAb4qLBzbasUVhTQT6pp4z1ljvFxJgI1sAMAcwK8EcCTgAXzcK3kwFQ5ggjsC_AVPH8Id16R7P1rFlqxxiaqkbIJwlyXCRQyMNXJF1Tggz9DzPaRgwiwAq2lnpH8njBh5zbF8owD1MqmmUJHlpwdWJvIRifr0kqrOSGIdr5DlHG4g0U1PimuxzyZv1INGA0wIHg0VBkaU0aFSTBa_bGmZugKXWw12L9jlQSAkwt-00v2b9vEqpDE6dSwpV2opC80sGo8DQQGsyR9opGRgS_sO0nkunk21vBt0WEBc5khclhjhGAqHVDa-gbwfGklNFmhIsoGE-lV0XzObx-Xc1MeqJFL7OaEURJ8kDG-1kiYm26cNln9CBnzOMl0IXEBRtpoCe20D2CoHVooKo2uKsKaXB4CpVw6iEgOacAA5MD1jsYsowyGNVasMkADHnKm8xI7GgY6TBAFm32vSYoVyrtjGYZrQY_-u6FZhbSozp7wFZmsxtpO1HIUAABGyDf9SMGMw4shaIATKCKcGWFWQ4kE0AgiHNubb9GuSJxmYYMHa75Ckczy67AcjbFGKbNJh9YJ-4BOA4g-SI2QhRnbUEZpeQGCEFwRg2T8Fgj6DP2dAQci4uBE4Xxp1zTWWNr4BBgGz2HCohfzHOpZBzyAgSZwuTqzsTgVbFY0wV6viJFL7OZj6PguonNtqtQlvp7qabA9IMfYBBhybwx4bmlGWQoJ8enW7tn-8eHR-cgJAcSvcO90737ik_2Ds8P3xz8HH51rs75eGGrtrpZt0rWUguNjST573MhT-JystzCvJB8QaD-ObGVJ5XIE_OCchkK9Htn2u_-ONJGoVx5EWjKPUn42j8xz3CPfmUcD87fHk0O6bZWfF-fLX7vnh28vrlu3bBvP2Jf7VTi3eT7U5cLbzs_WH3TF6EW9ezxZXePaDvZzM_e6e-TLgfMw1cmLP_qWTPJ-Mk8ih1M3_M3CgIiTvx0gno9jiMokmSplH8wyX7dNK28oHxtdfHOcU0M32yyoSG6IYxFgSocAoIkndEIsYr9Epbt9eWNrCOnGedw0DbW-0JwraG5Dh3ZoOU7zssex2NbSHBhGwbg_QZ6mYIMtgCQ7IN6fQCYzBWHAbvhnQa5tqrXWj7AlN8vcx_M14BJrEaB1sRYSDWcgEDgivbaWHPsHpIcyXmt7akc2ZMZbCM2-COigLGKQFJqNwxRe8gajq0ZbgKnAMTIDgkyHM5W64HEgyU2MqG2Zy02tqho0pOmXBzAoIGe6344jbWG5AQ7bQEk8IwEGtrm5AThU37EL_U-XYZU7VcnUGtkbUZBnoyJbhYmy4sc6LHF5wDdUl-5kDzTUYby-KifmCjnaE-BZlN8quWoI9SuwVmnXdQsHf06JAOI1xHI_B5FK2K1QR-f3TmhjPQ3ODhGZfuUvcji4Cahh-AWVxAajwHkVqCRNAMINLmNzp758DRDTYCNY2khNVBu9eIZGPBz0WhIHzRAXlQjXJpVb7GyQEH5rhhR_ABGwD7TXFjr2YOLyxGUUgTTu3bimvDBHYnBwluAM0a3xleI7mdYnFTEcGMlfKWjziwnJ1To-QMyBRlDNBXKygRvQGmTA47pjCAmnaWJsEGdizBWiAx1A923aWsrcThU0Gqx4d-EpNk-oT-rzNaQhvz0Oh_frOd1cvy282skbNjvRb1M-5yT5nVoRD7NMh6PJbqd83tMQGqcAkk0iheo5DNJURnUK4FZKEQT0fO7nLzmi0j3DIDECvb1w5kihzjPpQD6IrW8Iph6Z2NhGVe0W-_3aQpegjrbdNA98AjGUJ4DsSFEF0eatg9As1wHxAyA2wCOYHdZb_kUBtFvD3HQDZxpy0mSbjWlhu9pCxQ_3KOA9XYGgjyEmpUaEPgmMruGsDLDjf4gHhqu3EI6xD2KAVTkeVG5p2NxFrS5V4ddtnP_zZjwmU8PkIIwiB76KOsR2e0KCqJ-YmN9jcX6-pGxX6fVp8k_ij2Em-c3iPVg-hTUr1Vb-NXu1vd6d4eu9qlv_PDcffOvCmuu7PX-uX-xezw6NUL9kakavHbM9l1ZbtfX6ng8GCfX4bTWnyZVD-4u7F51G9svlqKnf-leickH9OAglzPWORGLJm4kzRO3LHPIjZOCzLO0h9_4K5V8NCHj08H7k8H7t_Il992TKQug6fI_LVHDxchfWijPQn1J6H-3Y4cwkr4E_q_kjLrtM87n4T6k1D_hwl14lfp-IkQvnJ3I5nwz836n260v7lQR1EklXGzWuXfp9VTL4pHUTpOJ0l8j1j_pFY_OnufzedtPjk2hbrufj-ZNC-3o7Na_bbv6aM35hU_fivjI19u8Rfb_LQ7fh0t4iB6s3OatGE1W3yZVn8FiyTVBqQ5CpjJEtePUMnR_JqlT-HvKfz9vcPf95BSAQIBfn96zhYlzzhAj2SyNedgonNkkR8Cq4sgf2hYPW0-PW0-fSPcvu2EQ4nw8idOnL5NfibmwY12CMFkjneWIMXpL2pLrbm9rWVvlBUWiT2o8PuH7Zoq55hfIoYT7UCEnuFHIT1G7X0vSwtczAjtL0sD0FqBN5aFU_Ncyf62ta57LA1PGGv1zRUu7NZe1rI7PWbO7ZVoYlZuXlnywH5Ivy80Lztb486VaFuecVnwyl6QzvHDDAGlpr9tlhtnuGE-g5HYot_Hwq855oDv31289VVBMaQXkDI0EIztDTCJ6zrGzTK8zd13cHeHTTPLunZ4SEoNXi9HTuivoiHzQHrB6xoaiH58DjmJzJgeuM1pK4MNW3sDvAQuAkqGTLYCuuuNM-MKmARvrbeivzRvNwDB5t3KDfVHSCh54BU_MaF8lxJDrdT0GuIvVNJSiOgV1XZTvCrbbl6s6rbbF38Sbp-XYZGfxPEoSEI8NL1Hhn3ys-SrKv9w-vbFwls8D8v5m51X7N2bnY7Xsaaz16-TM_Uifrnf-nUx1TNdFPro7fZeMr96w3evPyix5y1lWG-YFxCeN3KigMdYdQ4ZBvw6q_ZYefuRWVbef2Sd1fcr6vbO-Wv8vbenx-FkEgW5mwQec6PYn7gkpJ6bkSJhCUtJyH787WlzkQn_gdFrDw0gM7RCrr_ySyA_myHP4wfxw4EHfm-XoSCyhy41rN0ysKXlvcJ-ojdHKYmUTzHna-AnRPrFD_XxI0h7yDC0GSLY0CtWtHJx-S0gw1wT8Y-531nv78u7z4hYSLAXKFh0f-ZiefwtmSqcAOTYVQWLe6y0ZJ3OX_Frf-nX_vBo_Vqw-bmS86EMv-NP8zzM8syNWZS60STz3czPEzdlnhdTj8bBuOirBysjBMsRguHxHuQEFjlFMi7yjLp5nAVu5MfUzcbxxPWLyPcYC7Ig84bqPww5fEFmD30kAdnCbk0EuPmoAUnT1o39JnU93MFTMhh-d_BS-BMQNbrQmOl8k1d-VP-TlrrToQRKZ-azi7pTu7If_C5rR_FfVbcWvTXGs6P95_j0iYk-v2fFfw-khSs4CJc4CIfHj5EWIgzGdJz62SR2ozz23CigoZsW_tgNIZ8vcoBZSElfPVoZIVqOEA2P9yAtsmAmuT8mDIbwYgBzXgRulqWJGwdpmPmUZgGjQ_V_NNK2RHcTD4Dr-5PxGpRT_9VNhhuaTKMYwmP35dexs5vg8mi35WyGilzyXbv4UZJG3sifxJHnBX_8578iKJse:1qwVs0:t_mAzOxZb9-zcHu0PO-jGHzRK4jS9OL_VvEbX_7nrwk", "expire_date": "2023-11-10T23:04:00.195Z"}}] \ No newline at end of file +[{"model": "home.homepage", "pk": 3, "fields": {"body": "[{\"id\": \"ce648d1f-bccc-4ca3-93cf-9247ff79d7dd\", \"type\": \"richtext\", \"value\": \"

This site is using a dev version of the database with mock content. It does not mirror the production site. If you want to add a page, user or other content to the database, just make the changes in Wagtail and export fixtures from your Vagrant shell:

\"}, {\"id\": \"2c6f059f-e50b-4501-842e-58535ad4981c\", \"type\": \"new_row\", \"value\": {}}, {\"id\": \"64761a97-4ceb-43f4-8e19-b386d416d5c4\", \"type\": \"richtext\", \"value\": \"

./manage.py dumpdata > home/fixtures/dev.json

\"}, {\"id\": \"c9cc9d1f-3bd1-498f-9b86-8db95d69981b\", \"type\": \"new_row\", \"value\": {}}, {\"id\": \"c23e98c3-8b72-4f27-bfe8-74888a3099f1\", \"type\": \"richtext\", \"value\": \"

Any changes you've made will be preserved in the dev database.

\"}]"}}, {"model": "portal.portalhomepage", "pk": 11, "fields": {"introduction": "

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

", "featured_exhibit": null, "about_the_bmrc": "

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

"}}, {"model": "standard.standardpage", "pk": 6, "fields": {"body": "[{\"id\": \"92590588-018e-4faa-88e4-9c082b881ba7\", \"type\": \"richtext\", \"value\": \"

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

\"}]"}}, {"model": "standard.standardpage", "pk": 7, "fields": {"body": "[{\"id\": \"588dc3ac-086f-49a7-a77d-f38ef27f7eca\", \"type\": \"richtext\", \"value\": \"

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

It indicates a synchronic distortion in the areas emanating triolic waves. The cerebellum, the cerebral cortex, the brain stem, the entire nervous system has been depleted of electrochemical energy. Any device like that would produce high levels of triolic waves. These walls have undergone some kind of selective molecular polarization. I haven't determined if our phaser energy can generate a stable field. We could alter the photons with phase discriminators.

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

\"}]"}}, {"model": "standard.standardpage", "pk": 8, "fields": {"body": "[{\"id\": \"ab79628c-32d3-43b3-a919-1170b663c7ff\", \"type\": \"richtext\", \"value\": \"

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

\"}]"}}, {"model": "standard.standardpage", "pk": 9, "fields": {"body": "[{\"id\": \"03b20623-98c1-4b49-bace-a9f47aca3eca\", \"type\": \"richtext\", \"value\": \"

It indicates a synchronic distortion in the areas emanating triolic waves. The cerebellum, the cerebral cortex, the brain stem, the entire nervous system has been depleted of electrochemical energy. Any device like that would produce high levels of triolic waves. These walls have undergone some kind of selective molecular polarization. I haven't determined if our phaser energy can generate a stable field. We could alter the photons with phase discriminators.

\"}]"}}, {"model": "standard.standardpage", "pk": 12, "fields": {"body": "[{\"id\": \"24f410bb-b818-4001-aa6a-8c45c55e4b96\", \"type\": \"richtext\", \"value\": \"

Communication is not possible. The shuttle has no power. Using the gravitational pull of a star to slingshot back in time? We are going to Starbase Montgomery for Engineering consultations prompted by minor read-out anomalies. Probes have recorded unusual levels of geological activity in all five planetary systems. Assemble a team. Look at records of the Drema quadrant. Would these scans detect artificial transmissions as well as natural signals?

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

\"}]"}}, {"model": "standard.standardpage", "pk": 13, "fields": {"body": "[{\"id\": \"cab3ca6e-c076-442d-8c40-2ec9052da6e8\", \"type\": \"richtext\", \"value\": \"

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

\"}]"}}, {"model": "standard.standardpage", "pk": 14, "fields": {"body": "[{\"id\": \"827badc5-9687-4903-873b-cbdd0ca1d00a\", \"type\": \"richtext\", \"value\": \"

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

\"}]"}}, {"model": "standard.standardpage", "pk": 15, "fields": {"body": "[{\"id\": \"d6b0ac04-c16b-4915-bf92-8ab03571661d\", \"type\": \"richtext\", \"value\": \"

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

\"}]"}}, {"model": "standard.standardpage", "pk": 16, "fields": {"body": "[{\"id\": \"99ad71c8-4d87-4999-9495-c1153f8705f4\", \"type\": \"richtext\", \"value\": \"

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

\"}]"}}, {"model": "standard.standardpage", "pk": 17, "fields": {"body": "[{\"id\": \"626e76b7-cbed-41ef-993a-89eb8f735b2c\", \"type\": \"richtext\", \"value\": \"

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

\"}]"}}, {"model": "standard.standardpage", "pk": 18, "fields": {"body": "[{\"id\": \"284f11fa-901b-4288-9de3-60f2cfcf241e\", \"type\": \"richtext\", \"value\": \"

Communication is not possible. The shuttle has no power. Using the gravitational pull of a star to slingshot back in time? We are going to Starbase Montgomery for Engineering consultations prompted by minor read-out anomalies. Probes have recorded unusual levels of geological activity in all five planetary systems. Assemble a team. Look at records of the Drema quadrant. Would these scans detect artificial transmissions as well as natural signals?

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

\"}]"}}, {"model": "standard.standardpage", "pk": 19, "fields": {"body": "[{\"id\": \"0d46a540-d980-4ee5-a715-040eb4203da6\", \"type\": \"richtext\", \"value\": \"

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

\"}]"}}, {"model": "standard.standardpage", "pk": 20, "fields": {"body": "[{\"id\": \"862c9348-617f-4593-bde8-0493275d24d8\", \"type\": \"richtext\", \"value\": \"

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

\"}]"}}, {"model": "standard.standardpage", "pk": 21, "fields": {"body": "[{\"id\": \"72cbfef4-faaa-43dd-b16a-2e03ba8b05b7\", \"type\": \"richtext\", \"value\": \"

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

\"}]"}}, {"model": "standard.standardpage", "pk": 22, "fields": {"body": "[{\"id\": \"d57f41b0-affb-4f32-a9e3-a150bba9269d\", \"type\": \"richtext\", \"value\": \"

Communication is not possible. The shuttle has no power. Using the gravitational pull of a star to slingshot back in time? We are going to Starbase Montgomery for Engineering consultations prompted by minor read-out anomalies. Probes have recorded unusual levels of geological activity in all five planetary systems. Assemble a team. Look at records of the Drema quadrant. Would these scans detect artificial transmissions as well as natural signals?

\"}]"}}, {"model": "standard.standardpage", "pk": 23, "fields": {"body": "[{\"id\": \"d8a5f510-6d98-4221-9985-5bc11b6f7b50\", \"type\": \"richtext\", \"value\": \"

Sensors indicate human life forms 30 meters below the planet's surface. Stellar flares are increasing in magnitude and frequency. Set course for Rhomboid Dronegar 006, warp seven. There's no evidence of an advanced communication network. Total guidance system failure, with less than 24 hours' reserve power. Shield effectiveness has been reduced 12 percent. We have covered the area in a spherical pattern which a ship without warp drive could cross in the given time.

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

\"}]"}}, {"model": "standard.standardpage", "pk": 24, "fields": {"body": "[{\"id\": \"3f6755c2-8ffd-4698-81e7-5f62f24ab23a\", \"type\": \"richtext\", \"value\": \"

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

\"}]"}}, {"model": "standard.standardpage", "pk": 25, "fields": {"body": "[{\"id\": \"4f5dead2-a1c1-4528-9fec-df13e3a758d3\", \"type\": \"richtext\", \"value\": \"

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

\"}]"}}, {"model": "news.newsindexpage", "pk": 4, "fields": {}}, {"model": "news.newsstorypage", "pk": 5, "fields": {"lead_image": null, "excerpt": "Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile.", "body": "[{\"id\": \"fd9c8712-def3-4a71-b6e2-1d57f92d5334\", \"type\": \"richtext\", \"value\": \"

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile.

\"}]", "story_date": "2024-08-01"}}, {"model": "news.newsstorypage", "pk": 10, "fields": {"lead_image": null, "excerpt": "We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times.", "body": "[{\"id\": \"f634cc3f-c19f-4bd9-8e6b-3b28efdb9624\", \"type\": \"richtext\", \"value\": \"

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

It indicates a synchronic distortion in the areas emanating triolic waves. The cerebellum, the cerebral cortex, the brain stem, the entire nervous system has been depleted of electrochemical energy. Any device like that would produce high levels of triolic waves. These walls have undergone some kind of selective molecular polarization. I haven't determined if our phaser energy can generate a stable field. We could alter the photons with phase discriminators.

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

Sensors indicate human life forms 30 meters below the planet's surface. Stellar flares are increasing in magnitude and frequency. Set course for Rhomboid Dronegar 006, warp seven. There's no evidence of an advanced communication network. Total guidance system failure, with less than 24 hours' reserve power. Shield effectiveness has been reduced 12 percent. We have covered the area in a spherical pattern which a ship without warp drive could cross in the given time.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

\"}]", "story_date": "2024-08-01"}}, {"model": "site_settings.footersettings", "pk": 1, "fields": {"site": 2, "facebook": null, "twitter": null, "instagram": null, "address": null}}, {"model": "site_settings.alertbanner", "pk": 1, "fields": {"site": 2, "enable": false, "alert_message": null, "alert_level": "alert-info"}}, {"model": "wagtailredirects.redirect", "pk": 1, "fields": {"old_path": "/about/current-members", "site": 2, "is_permanent": true, "redirect_page": 17, "redirect_page_route_path": "", "redirect_link": "", "automatically_created": true, "created_at": "2024-08-01T17:11:04.848Z"}}, {"model": "wagtailredirects.redirect", "pk": 2, "fields": {"old_path": "/resources/legacy-management-resource-portal", "site": 2, "is_permanent": true, "redirect_page": 22, "redirect_page_route_path": "", "redirect_link": "", "automatically_created": true, "created_at": "2024-08-01T17:16:46.365Z"}}, {"model": "wagtailredirects.redirect", "pk": 3, "fields": {"old_path": "/resources/protest-in-the-archives", "site": 2, "is_permanent": true, "redirect_page": 23, "redirect_page_route_path": "", "redirect_link": "", "automatically_created": true, "created_at": "2024-08-01T17:17:49.619Z"}}, {"model": "wagtailusers.userprofile", "pk": 1, "fields": {"user": 1, "submitted_notifications": true, "approved_notifications": true, "rejected_notifications": true, "updated_comments_notifications": true, "preferred_language": "", "current_time_zone": "", "avatar": "", "dismissibles": {}, "theme": "system", "density": "default"}}, {"model": "wagtailsearch.indexentry", "pk": 1, "fields": {"content_type": 3, "object_id": "3", "title_norm": 1.25, "autocomplete": "'home':1", "title": "'home':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 2, "fields": {"content_type": 1, "object_id": "1", "title_norm": 1.25, "autocomplete": "'root':1", "title": "'root':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 3, "fields": {"content_type": 46, "object_id": "4", "title_norm": 1.25, "autocomplete": "'news':1", "title": "'news':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 6, "fields": {"content_type": 47, "object_id": "5", "title_norm": 0.625, "autocomplete": "'materialized':1 'of':3 'out':2 'patterns':4", "title": "'materi':1B 'pattern':4B", "body": "'coolant':14 'core':12 'deflector':1 'discharg':6 'energi':5 'failur':15 'fluctuat':16 'frequenc':19 'futil':22 'maximum':4 'phaser':17 'power':2 'primari':13 'reactor':11 'resist':20 'reson':18 'second':9 'six':8 'warp':10"}}, {"model": "wagtailsearch.indexentry", "pk": 9, "fields": {"content_type": 44, "object_id": "6", "title_norm": 1.2, "autocomplete": "'programs':1", "title": "'program':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 12, "fields": {"content_type": 44, "object_id": "7", "title_norm": 1.0, "autocomplete": "'about':1", "title": "", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 15, "fields": {"content_type": 44, "object_id": "8", "title_norm": 1.1666666666666667, "autocomplete": "'resources':1", "title": "'resourc':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 18, "fields": {"content_type": 44, "object_id": "9", "title_norm": 1.1428571428571428, "autocomplete": "'contact':1", "title": "'contact':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 21, "fields": {"content_type": 47, "object_id": "10", "title_norm": 0.625, "autocomplete": "'bmrc':2 'support':1", "title": "'bmrc':2B 'support':1B", "body": "'acquaint':3 'bio':16 'bio-electron':15 'cetera':37 'electron':17 'em':26 'engin':18 'et':36 'forgiv':39 'heat':30 'infrar':32 'listen':46 'much':23 'phenomenon':7 'piec':13 'radio':34 'rang':28 're':2 'remark':12 'said':44 'see':22 'spectrum':27 'thousand':50 'time':51 've':43 'wave':35 'wormhol':6"}}, {"model": "wagtailsearch.indexentry", "pk": 24, "fields": {"content_type": 36, "object_id": "11", "title_norm": 1.222222222222222, "autocomplete": "'portal':1", "title": "'portal':1B", "body": "'000':20 '3':19 'airborn':7 'anomal':6 'approach':27 'arm':75 'atmospher':15 'begin':119 'captain':109 'circuit':84 'communic':91 'compil':61 'data':59 'deflector':37 'detector':83 'disrupt':89 'electromagnet':9,22 'elementari':112 'front':26 'holograph':63 'increas':17 'inorgan':100 'know':126 'level':12 'local':53 'make':50 'manual':3 'materi':101 'maximum':40 'meat':98 'must':87 'output':41 'pattern':104 'percent':21 'period':48 'phaser':73 'phenomenon':54 'photon':77 'power':71 'radiat':11 'read':10 'recommend':68 'run':1 'saw':93 'scienc':117 'shield':38,65 'ship':35 'short':47 'simul':64 'size':45 'someth':79,94 'statement':115 'strang':80 'strength':32 'subspac':24 'suffici':58 'sweep':4 'synchron':28 'tasti':96 'torpedo':78 'transfer':70 'transport':108,128 'use':105 'valuabl':114 'wave':25 'weapon':86 'wisdom':121 'wormhol':43 'would':49"}}, {"model": "wagtailsearch.indexentry", "pk": 27, "fields": {"content_type": 44, "object_id": "12", "title_norm": 0.32, "autocomplete": "'fellowship':5 'short':3 'short-term':2 'summer':1 'term':4", "title": "'fellowship':5B 'short':3B 'short-term':2B 'summer':1B 'term':4B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 30, "fields": {"content_type": 44, "object_id": "13", "title_norm": 0.38181818181818183, "autocomplete": "'archie':1 'archival':3 'internship':4 'motley':2 'program':5", "title": "'archi':1B 'archiv':3B 'internship':4B 'motley':2B 'program':5B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 33, "fields": {"content_type": 44, "object_id": "14", "title_norm": 0.5208333333333334, "autocomplete": "'color':1 'curtain':2 'processing':3 'project':4", "title": "'color':1B 'curtain':2B 'process':3B 'project':4B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 36, "fields": {"content_type": 44, "object_id": "15", "title_norm": 1.0384615384615385, "autocomplete": "'initiative':2 'survey':1", "title": "'initi':2B 'survey':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 39, "fields": {"content_type": 44, "object_id": "16", "title_norm": 1.0357142857142858, "autocomplete": "'information':2 'membership':1", "title": "'inform':2B 'membership':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 42, "fields": {"content_type": 44, "object_id": "17", "title_norm": 1.0333333333333334, "autocomplete": "'current':1 'members':2", "title": "'current':1B 'member':2B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 47, "fields": {"content_type": 44, "object_id": "18", "title_norm": 2.0, "autocomplete": "'partnerships':1", "title": "'partnership':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 50, "fields": {"content_type": 44, "object_id": "19", "title_norm": 0.9722222222222222, "autocomplete": "'board':1 'committees':2", "title": "'board':1B 'committe':2B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 53, "fields": {"content_type": 44, "object_id": "20", "title_norm": 1.9444444444444444, "autocomplete": "'staff':1", "title": "'staff':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 56, "fields": {"content_type": 44, "object_id": "21", "title_norm": 0.9736842105263158, "autocomplete": "'archives':1 'awareness':2", "title": "'archiv':1B 'awar':2B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 59, "fields": {"content_type": 44, "object_id": "22", "title_norm": 0.5125, "autocomplete": "'legacy':1 'management':2 'portal':4 'resource':3", "title": "'legaci':1B 'manag':2B 'portal':4B 'resourc':3B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 64, "fields": {"content_type": 44, "object_id": "23", "title_norm": 1.0238095238095237, "autocomplete": "'archives':4 'in':2 'protest':1 'the':3", "title": "'archiv':4B 'protest':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 69, "fields": {"content_type": 44, "object_id": "24", "title_norm": 2.0, "autocomplete": "'workshops':1", "title": "'workshop':1B", "body": ""}}, {"model": "wagtailsearch.indexentry", "pk": 72, "fields": {"content_type": 44, "object_id": "25", "title_norm": 1.9565217391304348, "autocomplete": "'jobs':1", "title": "'job':1B", "body": ""}}, {"model": "wagtailcore.locale", "pk": 1, "fields": {"language_code": "en"}}, {"model": "wagtailcore.site", "pk": 2, "fields": {"hostname": "localhost", "port": 80, "site_name": "", "root_page": 3, "is_default_site": true}}, {"model": "wagtailcore.collection", "pk": 1, "fields": {"path": "0001", "depth": 1, "numchild": 0, "name": "Root"}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 1, "fields": {"group": 1, "collection": 1, "permission": 1}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 2, "fields": {"group": 2, "collection": 1, "permission": 1}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 3, "fields": {"group": 1, "collection": 1, "permission": 2}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 4, "fields": {"group": 2, "collection": 1, "permission": 2}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 5, "fields": {"group": 1, "collection": 1, "permission": 118}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 6, "fields": {"group": 2, "collection": 1, "permission": 118}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 7, "fields": {"group": 1, "collection": 1, "permission": 119}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 8, "fields": {"group": 2, "collection": 1, "permission": 119}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 9, "fields": {"group": 1, "collection": 1, "permission": 121}}, {"model": "wagtailcore.groupcollectionpermission", "pk": 10, "fields": {"group": 2, "collection": 1, "permission": 121}}, {"model": "wagtailcore.page", "pk": 1, "fields": {"path": "0001", "depth": 1, "numchild": 1, "translation_key": "274d3f17-b83f-4a5c-80de-ef8af4d306d9", "locale": 1, "latest_revision": null, "live": true, "has_unpublished_changes": false, "first_published_at": null, "last_published_at": null, "live_revision": null, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Root", "draft_title": "Root", "slug": "root", "content_type": 1, "url_path": "/", "owner": null, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": null, "alias_of": null}}, {"model": "wagtailcore.page", "pk": 3, "fields": {"path": "00010001", "depth": 2, "numchild": 6, "translation_key": "2581695a-f86a-42c7-8089-d71e9e989479", "locale": 1, "latest_revision": 4, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T14:21:06.345Z", "last_published_at": "2024-08-01T14:42:05.572Z", "live_revision": 4, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Home", "draft_title": "Home", "slug": "home", "content_type": 3, "url_path": "/home/", "owner": null, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T14:42:05.461Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 4, "fields": {"path": "000100010001", "depth": 3, "numchild": 2, "translation_key": "0ec121f7-9e95-4ba4-b9b9-c5d5a7df335b", "locale": 1, "latest_revision": 2, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T14:24:51.579Z", "last_published_at": "2024-08-01T14:24:51.579Z", "live_revision": 2, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "News", "draft_title": "News", "slug": "news", "content_type": 46, "url_path": "/home/news/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T14:24:51.488Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 5, "fields": {"path": "0001000100010001", "depth": 4, "numchild": 0, "translation_key": "5bf78397-7265-4bfe-bb29-8008f9f5368c", "locale": 1, "latest_revision": 3, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T14:25:37.205Z", "last_published_at": "2024-08-01T14:25:37.205Z", "live_revision": 3, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Materialized Out of Patterns", "draft_title": "Materialized Out of Patterns", "slug": "materialized-out-of-patterns", "content_type": 47, "url_path": "/home/news/materialized-out-of-patterns/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T14:25:37.143Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 6, "fields": {"path": "000100010002", "depth": 3, "numchild": 4, "translation_key": "716a6c42-7565-42bc-b66a-11ca84f570a8", "locale": 1, "latest_revision": 5, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T16:54:41.336Z", "last_published_at": "2024-08-01T16:54:41.336Z", "live_revision": 5, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Programs", "draft_title": "Programs", "slug": "programs", "content_type": 44, "url_path": "/home/programs/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T16:54:41.210Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 7, "fields": {"path": "000100010003", "depth": 3, "numchild": 5, "translation_key": "9eb600ae-e98c-454a-aedc-81f6814d739f", "locale": 1, "latest_revision": 6, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T16:55:17.340Z", "last_published_at": "2024-08-01T16:55:17.340Z", "live_revision": 6, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "About", "draft_title": "About", "slug": "about", "content_type": 44, "url_path": "/home/about/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T16:55:17.253Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 8, "fields": {"path": "000100010004", "depth": 3, "numchild": 5, "translation_key": "4483f68f-fc47-4783-bd00-89f9eb0a4009", "locale": 1, "latest_revision": 7, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T16:56:09.519Z", "last_published_at": "2024-08-01T16:56:09.519Z", "live_revision": 7, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Resources", "draft_title": "Resources", "slug": "resources", "content_type": 44, "url_path": "/home/resources/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T16:56:09.454Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 9, "fields": {"path": "000100010005", "depth": 3, "numchild": 0, "translation_key": "a718d69f-e3a2-4e47-a636-ea28707b67d2", "locale": 1, "latest_revision": 8, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T16:57:26.485Z", "last_published_at": "2024-08-01T16:57:26.485Z", "live_revision": 8, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Contact", "draft_title": "Contact", "slug": "contact", "content_type": 44, "url_path": "/home/contact/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T16:57:26.411Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 10, "fields": {"path": "0001000100010002", "depth": 4, "numchild": 0, "translation_key": "46bad65e-cb76-42c6-8820-c64ac13f09b9", "locale": 1, "latest_revision": 9, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T16:58:36.546Z", "last_published_at": "2024-08-01T16:58:36.546Z", "live_revision": 9, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Support BMRC", "draft_title": "Support BMRC", "slug": "support-bmrc", "content_type": 47, "url_path": "/home/news/support-bmrc/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T16:58:36.453Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 11, "fields": {"path": "000100010006", "depth": 3, "numchild": 0, "translation_key": "fecc1a33-0ff4-4a52-b348-e3b781921508", "locale": 1, "latest_revision": 10, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T17:00:45.700Z", "last_published_at": "2024-08-01T17:00:45.700Z", "live_revision": 10, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Portal", "draft_title": "Portal", "slug": "portal", "content_type": 36, "url_path": "/home/portal/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T17:00:45.608Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 12, "fields": {"path": "0001000100020001", "depth": 4, "numchild": 0, "translation_key": "e85a08aa-3a19-4da3-adfc-81425ba4efd1", "locale": 1, "latest_revision": 11, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T17:06:22.344Z", "last_published_at": "2024-08-01T17:06:22.344Z", "live_revision": 11, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Summer Short-Term Fellowship", "draft_title": "Summer Short-Term Fellowship", "slug": "summer-short-term-fellowship", "content_type": 44, "url_path": "/home/programs/summer-short-term-fellowship/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T17:06:22.243Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 13, "fields": {"path": "0001000100020002", "depth": 4, "numchild": 0, "translation_key": "42324b79-ae1a-4397-b630-258db5a3a718", "locale": 1, "latest_revision": 12, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T17:07:21.126Z", "last_published_at": "2024-08-01T17:07:21.126Z", "live_revision": 12, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Archie Motley Archival Internship Program", "draft_title": "Archie Motley Archival Internship Program", "slug": "archie-motley-archival-internship-program", "content_type": 44, "url_path": "/home/programs/archie-motley-archival-internship-program/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T17:07:21.058Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 14, "fields": {"path": "0001000100020003", "depth": 4, "numchild": 0, "translation_key": "28dfdb48-df85-4d68-a356-71efe46b7a76", "locale": 1, "latest_revision": 13, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T17:08:02.359Z", "last_published_at": "2024-08-01T17:08:02.359Z", "live_revision": 13, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Color Curtain Processing Project", "draft_title": "Color Curtain Processing Project", "slug": "color-curtain-processing-project", "content_type": 44, "url_path": "/home/programs/color-curtain-processing-project/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T17:08:02.304Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 15, "fields": {"path": "0001000100020004", "depth": 4, "numchild": 0, "translation_key": "20687646-f3cf-4515-9bf5-b8c7ecda1579", "locale": 1, "latest_revision": 14, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T17:08:39.265Z", "last_published_at": "2024-08-01T17:08:39.265Z", "live_revision": 14, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Survey Initiative", "draft_title": "Survey Initiative", "slug": "survey-initiative", "content_type": 44, "url_path": "/home/programs/survey-initiative/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T17:08:39.177Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 16, "fields": {"path": "0001000100030001", "depth": 4, "numchild": 0, "translation_key": "53114ac5-9c4b-45f3-ace3-f6f3532d5a03", "locale": 1, "latest_revision": 15, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T17:10:01.165Z", "last_published_at": "2024-08-01T17:10:01.165Z", "live_revision": 15, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Membership Information", "draft_title": "Membership Information", "slug": "membership-information", "content_type": 44, "url_path": "/home/about/membership-information/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T17:10:01.108Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 17, "fields": {"path": "0001000100030002", "depth": 4, "numchild": 0, "translation_key": "2ff3c90f-ae73-4e87-af1b-ebda333d3410", "locale": 1, "latest_revision": 17, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T17:10:37.939Z", "last_published_at": "2024-08-01T17:11:04.651Z", "live_revision": 17, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Current Members", "draft_title": "Current Members", "slug": "membership", "content_type": 44, "url_path": "/home/about/membership/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T17:11:04.497Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 18, "fields": {"path": "0001000100030003", "depth": 4, "numchild": 0, "translation_key": "08c93e61-f6b1-44a8-a13b-e13ea78542e2", "locale": 1, "latest_revision": 18, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T17:11:40.938Z", "last_published_at": "2024-08-01T17:11:40.938Z", "live_revision": 18, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Partnerships", "draft_title": "Partnerships", "slug": "partnerships", "content_type": 44, "url_path": "/home/about/partnerships/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T17:11:40.834Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 19, "fields": {"path": "0001000100030004", "depth": 4, "numchild": 0, "translation_key": "d84faac3-f69b-4d8d-a80d-b48a60565beb", "locale": 1, "latest_revision": 19, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T17:12:49.604Z", "last_published_at": "2024-08-01T17:12:49.604Z", "live_revision": 19, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Board & Committees", "draft_title": "Board & Committees", "slug": "board-committees", "content_type": 44, "url_path": "/home/about/board-committees/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T17:12:49.513Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 20, "fields": {"path": "0001000100030005", "depth": 4, "numchild": 0, "translation_key": "931b9e8b-492a-41d2-8e7a-c5a161a78d14", "locale": 1, "latest_revision": 20, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T17:13:49.608Z", "last_published_at": "2024-08-01T17:13:49.608Z", "live_revision": 20, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Staff", "draft_title": "Staff", "slug": "staff", "content_type": 44, "url_path": "/home/about/staff/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T17:13:49.507Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 21, "fields": {"path": "0001000100040001", "depth": 4, "numchild": 0, "translation_key": "c4f79bb0-66ef-4db4-806f-eca3b18fc448", "locale": 1, "latest_revision": 21, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T17:15:30.177Z", "last_published_at": "2024-08-01T17:15:30.177Z", "live_revision": 21, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Archives Awareness", "draft_title": "Archives Awareness", "slug": "archives-awareness", "content_type": 44, "url_path": "/home/resources/archives-awareness/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T17:15:30.041Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 22, "fields": {"path": "0001000100040002", "depth": 4, "numchild": 0, "translation_key": "dda6a036-28e5-408f-a9a3-d621716dfdd9", "locale": 1, "latest_revision": 23, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T17:16:19.635Z", "last_published_at": "2024-08-01T17:16:46.236Z", "live_revision": 23, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Legacy Management Resource Portal", "draft_title": "Legacy Management Resource Portal", "slug": "legacy-management-resources-portal", "content_type": 44, "url_path": "/home/resources/legacy-management-resources-portal/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T17:16:46.146Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 23, "fields": {"path": "0001000100040003", "depth": 4, "numchild": 0, "translation_key": "fb623db8-8c5a-4016-8e39-53ee7d008f85", "locale": 1, "latest_revision": 25, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T17:17:30.222Z", "last_published_at": "2024-08-01T17:17:49.499Z", "live_revision": 25, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Protest in the Archives", "draft_title": "Protest in the Archives", "slug": "protest-archives", "content_type": 44, "url_path": "/home/resources/protest-archives/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T17:17:49.410Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 24, "fields": {"path": "0001000100040004", "depth": 4, "numchild": 0, "translation_key": "08bac0d7-eeb9-47e6-b05b-29f4ffda21ce", "locale": 1, "latest_revision": 26, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T17:18:22.159Z", "last_published_at": "2024-08-01T17:18:22.159Z", "live_revision": 26, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Workshops", "draft_title": "Workshops", "slug": "workshops", "content_type": 44, "url_path": "/home/resources/workshops/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T17:18:22.059Z", "alias_of": null}}, {"model": "wagtailcore.page", "pk": 25, "fields": {"path": "0001000100040005", "depth": 4, "numchild": 0, "translation_key": "e472a27c-95cc-4d5b-ae3f-12e5119b4c56", "locale": 1, "latest_revision": 27, "live": true, "has_unpublished_changes": false, "first_published_at": "2024-08-01T17:19:16.392Z", "last_published_at": "2024-08-01T17:19:16.392Z", "live_revision": 27, "go_live_at": null, "expire_at": null, "expired": false, "locked": false, "locked_at": null, "locked_by": null, "title": "Jobs", "draft_title": "Jobs", "slug": "jobs", "content_type": 44, "url_path": "/home/resources/jobs/", "owner": 1, "seo_title": "", "show_in_menus": false, "search_description": "", "latest_revision_created_at": "2024-08-01T17:19:16.247Z", "alias_of": null}}, {"model": "wagtailcore.revision", "pk": 1, "fields": {"content_type": 3, "base_content_type": 1, "object_id": "3", "created_at": "2024-08-01T14:21:06.276Z", "user": 1, "object_str": "Home", "content": {"pk": 3, "body": "[{\"type\": \"richtext\", \"value\": \"

This site is using a dev version of the database with mock content. It does not mirror the production site. If you want to add a page, user or other content to the database, just make the changes in Wagtail and export fixtures from your Vagrant shell:

./manage.py dumpdata > home/fixtures/dev.json

Any changes you've made will be preserved in the dev database.

\", \"id\": \"ce648d1f-bccc-4ca3-93cf-9247ff79d7dd\"}]", "live": true, "path": "00010001", "slug": "home", "depth": 2, "owner": null, "title": "Home", "locale": 1, "locked": false, "expired": false, "alias_of": null, "numchild": 0, "url_path": "/home/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Home", "content_type": 3, "live_revision": null, "show_in_menus": false, "carousel_images": [], "latest_revision": null, "translation_key": "2581695a-f86a-42c7-8089-d71e9e989479", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 2, "fields": {"content_type": 46, "base_content_type": 1, "object_id": "4", "created_at": "2024-08-01T14:24:51.488Z", "user": 1, "object_str": "News", "content": {"pk": 4, "live": true, "path": "000100010001", "slug": "news", "depth": 3, "owner": 1, "title": "News", "locale": 1, "locked": false, "expired": false, "alias_of": null, "numchild": 0, "url_path": "/home/news/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "News", "content_type": 46, "news_sidebar": [], "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "0ec121f7-9e95-4ba4-b9b9-c5d5a7df335b", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 3, "fields": {"content_type": 47, "base_content_type": 1, "object_id": "5", "created_at": "2024-08-01T14:25:37.143Z", "user": 1, "object_str": "Materialized Out of Patterns", "content": {"pk": 5, "body": "[{\"type\": \"richtext\", \"value\": \"

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile.

\", \"id\": \"fd9c8712-def3-4a71-b6e2-1d57f92d5334\"}]", "live": true, "path": "0001000100010001", "slug": "materialized-out-of-patterns", "depth": 4, "owner": 1, "title": "Materialized Out of Patterns", "locale": 1, "locked": false, "excerpt": "Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile.", "expired": false, "alias_of": null, "numchild": 0, "url_path": "/home/news/materialized-out-of-patterns/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "lead_image": null, "story_date": "2024-08-01", "draft_title": "Materialized Out of Patterns", "content_type": 47, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "5bf78397-7265-4bfe-bb29-8008f9f5368c", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 4, "fields": {"content_type": 3, "base_content_type": 1, "object_id": "3", "created_at": "2024-08-01T14:42:05.461Z", "user": 1, "object_str": "Home", "content": {"pk": 3, "body": "[{\"type\": \"richtext\", \"value\": \"

This site is using a dev version of the database with mock content. It does not mirror the production site. If you want to add a page, user or other content to the database, just make the changes in Wagtail and export fixtures from your Vagrant shell:

\", \"id\": \"ce648d1f-bccc-4ca3-93cf-9247ff79d7dd\"}, {\"type\": \"new_row\", \"value\": {}, \"id\": \"2c6f059f-e50b-4501-842e-58535ad4981c\"}, {\"type\": \"richtext\", \"value\": \"

./manage.py dumpdata > home/fixtures/dev.json

\", \"id\": \"64761a97-4ceb-43f4-8e19-b386d416d5c4\"}, {\"type\": \"new_row\", \"value\": {}, \"id\": \"c9cc9d1f-3bd1-498f-9b86-8db95d69981b\"}, {\"type\": \"richtext\", \"value\": \"

Any changes you've made will be preserved in the dev database.

\", \"id\": \"c23e98c3-8b72-4f27-bfe8-74888a3099f1\"}]", "live": true, "path": "00010001", "slug": "home", "depth": 2, "owner": null, "title": "Home", "locale": 1, "locked": false, "expired": false, "alias_of": null, "numchild": 1, "url_path": "/home/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Home", "content_type": 3, "live_revision": 1, "show_in_menus": false, "carousel_images": [], "latest_revision": 1, "translation_key": "2581695a-f86a-42c7-8089-d71e9e989479", "last_published_at": "2024-08-01T14:21:06.345Z", "first_published_at": "2024-08-01T14:21:06.345Z", "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": "2024-08-01T14:21:06.276Z"}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 5, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "6", "created_at": "2024-08-01T16:54:41.210Z", "user": 1, "object_str": "Programs", "content": {"pk": 6, "body": "[{\"type\": \"richtext\", \"value\": \"

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

\", \"id\": \"92590588-018e-4faa-88e4-9c082b881ba7\"}]", "live": true, "path": "000100010002", "slug": "programs", "depth": 3, "owner": 1, "title": "Programs", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/programs/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Programs", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "716a6c42-7565-42bc-b66a-11ca84f570a8", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 6, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "7", "created_at": "2024-08-01T16:55:17.253Z", "user": 1, "object_str": "About", "content": {"pk": 7, "body": "[{\"type\": \"richtext\", \"value\": \"

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

It indicates a synchronic distortion in the areas emanating triolic waves. The cerebellum, the cerebral cortex, the brain stem, the entire nervous system has been depleted of electrochemical energy. Any device like that would produce high levels of triolic waves. These walls have undergone some kind of selective molecular polarization. I haven't determined if our phaser energy can generate a stable field. We could alter the photons with phase discriminators.

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

\", \"id\": \"588dc3ac-086f-49a7-a77d-f38ef27f7eca\"}]", "live": true, "path": "000100010003", "slug": "about", "depth": 3, "owner": 1, "title": "About", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "About", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "9eb600ae-e98c-454a-aedc-81f6814d739f", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 7, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "8", "created_at": "2024-08-01T16:56:09.454Z", "user": 1, "object_str": "Resources", "content": {"pk": 8, "body": "[{\"type\": \"richtext\", \"value\": \"

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

\", \"id\": \"ab79628c-32d3-43b3-a919-1170b663c7ff\"}]", "live": true, "path": "000100010004", "slug": "resources", "depth": 3, "owner": 1, "title": "Resources", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/resources/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Resources", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "4483f68f-fc47-4783-bd00-89f9eb0a4009", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 8, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "9", "created_at": "2024-08-01T16:57:26.411Z", "user": 1, "object_str": "Contact", "content": {"pk": 9, "body": "[{\"type\": \"richtext\", \"value\": \"

It indicates a synchronic distortion in the areas emanating triolic waves. The cerebellum, the cerebral cortex, the brain stem, the entire nervous system has been depleted of electrochemical energy. Any device like that would produce high levels of triolic waves. These walls have undergone some kind of selective molecular polarization. I haven't determined if our phaser energy can generate a stable field. We could alter the photons with phase discriminators.

\", \"id\": \"03b20623-98c1-4b49-bace-a9f47aca3eca\"}]", "live": true, "path": "000100010005", "slug": "contact", "depth": 3, "owner": 1, "title": "Contact", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/contact/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Contact", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "a718d69f-e3a2-4e47-a636-ea28707b67d2", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 9, "fields": {"content_type": 47, "base_content_type": 1, "object_id": "10", "created_at": "2024-08-01T16:58:36.453Z", "user": 1, "object_str": "Support BMRC", "content": {"pk": 10, "body": "[{\"type\": \"richtext\", \"value\": \"

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

It indicates a synchronic distortion in the areas emanating triolic waves. The cerebellum, the cerebral cortex, the brain stem, the entire nervous system has been depleted of electrochemical energy. Any device like that would produce high levels of triolic waves. These walls have undergone some kind of selective molecular polarization. I haven't determined if our phaser energy can generate a stable field. We could alter the photons with phase discriminators.

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

Sensors indicate human life forms 30 meters below the planet's surface. Stellar flares are increasing in magnitude and frequency. Set course for Rhomboid Dronegar 006, warp seven. There's no evidence of an advanced communication network. Total guidance system failure, with less than 24 hours' reserve power. Shield effectiveness has been reduced 12 percent. We have covered the area in a spherical pattern which a ship without warp drive could cross in the given time.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

\", \"id\": \"f634cc3f-c19f-4bd9-8e6b-3b28efdb9624\"}]", "live": true, "path": "0001000100010002", "slug": "support-bmrc", "depth": 4, "owner": 1, "title": "Support BMRC", "locale": 1, "locked": false, "excerpt": "We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times.", "expired": false, "alias_of": null, "numchild": 0, "url_path": "/home/news/support-bmrc/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "lead_image": null, "story_date": "2024-08-01", "draft_title": "Support BMRC", "content_type": 47, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "46bad65e-cb76-42c6-8820-c64ac13f09b9", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 10, "fields": {"content_type": 36, "base_content_type": 1, "object_id": "11", "created_at": "2024-08-01T17:00:45.608Z", "user": 1, "object_str": "Portal", "content": {"pk": 11, "live": true, "path": "000100010006", "slug": "portal", "depth": 3, "owner": 1, "title": "Portal", "locale": 1, "locked": false, "expired": false, "alias_of": null, "numchild": 0, "url_path": "/home/portal/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Portal", "content_type": 36, "introduction": "

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

", "live_revision": null, "show_in_menus": false, "about_the_bmrc": "

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

", "latest_revision": null, "translation_key": "fecc1a33-0ff4-4a52-b348-e3b781921508", "featured_exhibit": null, "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 11, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "12", "created_at": "2024-08-01T17:06:22.243Z", "user": 1, "object_str": "Summer Short-Term Fellowship", "content": {"pk": 12, "body": "[{\"type\": \"richtext\", \"value\": \"

Communication is not possible. The shuttle has no power. Using the gravitational pull of a star to slingshot back in time? We are going to Starbase Montgomery for Engineering consultations prompted by minor read-out anomalies. Probes have recorded unusual levels of geological activity in all five planetary systems. Assemble a team. Look at records of the Drema quadrant. Would these scans detect artificial transmissions as well as natural signals?

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

\", \"id\": \"24f410bb-b818-4001-aa6a-8c45c55e4b96\"}]", "live": true, "path": "0001000100020001", "slug": "summer-short-term-fellowship", "depth": 4, "owner": 1, "title": "Summer Short-Term Fellowship", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/programs/summer-short-term-fellowship/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Summer Short-Term Fellowship", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "e85a08aa-3a19-4da3-adfc-81425ba4efd1", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 12, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "13", "created_at": "2024-08-01T17:07:21.058Z", "user": 1, "object_str": "Archie Motley Archival Internship Program", "content": {"pk": 13, "body": "[{\"type\": \"richtext\", \"value\": \"

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

\", \"id\": \"cab3ca6e-c076-442d-8c40-2ec9052da6e8\"}]", "live": true, "path": "0001000100020002", "slug": "archie-motley-archival-internship-program", "depth": 4, "owner": 1, "title": "Archie Motley Archival Internship Program", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/programs/archie-motley-archival-internship-program/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Archie Motley Archival Internship Program", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "42324b79-ae1a-4397-b630-258db5a3a718", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 13, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "14", "created_at": "2024-08-01T17:08:02.304Z", "user": 1, "object_str": "Color Curtain Processing Project", "content": {"pk": 14, "body": "[{\"type\": \"richtext\", \"value\": \"

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

\", \"id\": \"827badc5-9687-4903-873b-cbdd0ca1d00a\"}]", "live": true, "path": "0001000100020003", "slug": "color-curtain-processing-project", "depth": 4, "owner": 1, "title": "Color Curtain Processing Project", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/programs/color-curtain-processing-project/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Color Curtain Processing Project", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "28dfdb48-df85-4d68-a356-71efe46b7a76", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 14, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "15", "created_at": "2024-08-01T17:08:39.177Z", "user": 1, "object_str": "Survey Initiative", "content": {"pk": 15, "body": "[{\"type\": \"richtext\", \"value\": \"

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

Now what are the possibilities of warp drive? Cmdr Riker's nervous system has been invaded by an unknown microorganism. The organisms fuse to the nerve, intertwining at the molecular level. That's why the transporter's biofilters couldn't extract it. The vertex waves show a K-complex corresponding to an REM state. The engineering section's critical. Destruction is imminent. Their robes contain ultritium, highly explosive, virtually undetectable by your transporter.

\", \"id\": \"d6b0ac04-c16b-4915-bf92-8ab03571661d\"}]", "live": true, "path": "0001000100020004", "slug": "survey-initiative", "depth": 4, "owner": 1, "title": "Survey Initiative", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/programs/survey-initiative/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Survey Initiative", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "20687646-f3cf-4515-9bf5-b8c7ecda1579", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 15, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "16", "created_at": "2024-08-01T17:10:01.108Z", "user": 1, "object_str": "Membership Information", "content": {"pk": 16, "body": "[{\"type\": \"richtext\", \"value\": \"

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

\", \"id\": \"99ad71c8-4d87-4999-9495-c1153f8705f4\"}]", "live": true, "path": "0001000100030001", "slug": "membership-information", "depth": 4, "owner": 1, "title": "Membership Information", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/membership-information/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Membership Information", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "53114ac5-9c4b-45f3-ace3-f6f3532d5a03", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 16, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "17", "created_at": "2024-08-01T17:10:37.843Z", "user": 1, "object_str": "Current Members", "content": {"pk": 17, "body": "[{\"type\": \"richtext\", \"value\": \"

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

\", \"id\": \"626e76b7-cbed-41ef-993a-89eb8f735b2c\"}]", "live": true, "path": "0001000100030002", "slug": "current-members", "depth": 4, "owner": 1, "title": "Current Members", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/current-members/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Current Members", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "2ff3c90f-ae73-4e87-af1b-ebda333d3410", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 17, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "17", "created_at": "2024-08-01T17:11:04.497Z", "user": 1, "object_str": "Current Members", "content": {"pk": 17, "body": "[{\"type\": \"richtext\", \"value\": \"

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

\", \"id\": \"626e76b7-cbed-41ef-993a-89eb8f735b2c\"}]", "live": true, "path": "0001000100030002", "slug": "membership", "depth": 4, "owner": 1, "title": "Current Members", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/current-members/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Current Members", "content_type": 44, "live_revision": 16, "show_in_menus": false, "latest_revision": 16, "translation_key": "2ff3c90f-ae73-4e87-af1b-ebda333d3410", "last_published_at": "2024-08-01T17:10:37.939Z", "first_published_at": "2024-08-01T17:10:37.939Z", "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": "2024-08-01T17:10:37.843Z"}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 18, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "18", "created_at": "2024-08-01T17:11:40.834Z", "user": 1, "object_str": "Partnerships", "content": {"pk": 18, "body": "[{\"type\": \"richtext\", \"value\": \"

Communication is not possible. The shuttle has no power. Using the gravitational pull of a star to slingshot back in time? We are going to Starbase Montgomery for Engineering consultations prompted by minor read-out anomalies. Probes have recorded unusual levels of geological activity in all five planetary systems. Assemble a team. Look at records of the Drema quadrant. Would these scans detect artificial transmissions as well as natural signals?

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

\", \"id\": \"284f11fa-901b-4288-9de3-60f2cfcf241e\"}]", "live": true, "path": "0001000100030003", "slug": "partnerships", "depth": 4, "owner": 1, "title": "Partnerships", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/partnerships/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Partnerships", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "08c93e61-f6b1-44a8-a13b-e13ea78542e2", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 19, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "19", "created_at": "2024-08-01T17:12:49.513Z", "user": 1, "object_str": "Board & Committees", "content": {"pk": 19, "body": "[{\"type\": \"richtext\", \"value\": \"

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

\", \"id\": \"0d46a540-d980-4ee5-a715-040eb4203da6\"}]", "live": true, "path": "0001000100030004", "slug": "board-committees", "depth": 4, "owner": 1, "title": "Board & Committees", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/board-committees/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Board & Committees", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "d84faac3-f69b-4d8d-a80d-b48a60565beb", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 20, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "20", "created_at": "2024-08-01T17:13:49.507Z", "user": 1, "object_str": "Staff", "content": {"pk": 20, "body": "[{\"type\": \"richtext\", \"value\": \"

Shields up. I recommend we transfer power to phasers and arm the photon torpedoes. Something strange on the detector circuit. The weapons must have disrupted our communicators. You saw something as tasty as meat, but inorganically materialized out of patterns used by our transporters. Captain, the most elementary and valuable statement in science, the beginning of wisdom, is 'I do not know.' All transporters off.

Exceeding reaction chamber thermal limit. We have begun power-supply calibration. Force fields have been established on all turbo lifts and crawlways. Computer, run a level-two diagnostic on warp-drive systems. Antimatter containment positive. Warp drive within normal parameters. I read an ion trail characteristic of a freighter escape pod. The bomb had a molecular-decay detonator. Detecting some unusual fluctuations in subspace frequencies.

I have reset the sensors to scan for frequencies outside the usual range. By emitting harmonic vibrations to shatter the lattices. We will monitor and adjust the frequency of the resonators. He has this ability of instantly interpreting and extrapolating any verbal communication he hears. It may be due to the envelope over the structure, causing hydrogen-carbon helix patterns throughout. I'm comparing the molecular integrity of that bubble against our phasers.

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

\", \"id\": \"862c9348-617f-4593-bde8-0493275d24d8\"}]", "live": true, "path": "0001000100030005", "slug": "staff", "depth": 4, "owner": 1, "title": "Staff", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/about/staff/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Staff", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "931b9e8b-492a-41d2-8e7a-c5a161a78d14", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 21, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "21", "created_at": "2024-08-01T17:15:30.041Z", "user": 1, "object_str": "Archives Awareness", "content": {"pk": 21, "body": "[{\"type\": \"richtext\", \"value\": \"

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

Sensors indicate no shuttle or other ships in this sector. According to coordinates, we have travelled 7,000 light years and are located near the system J-25. Tractor beam released, sir. Force field maintaining our hull integrity. Damage report? Sections 27, 28 and 29 on decks four, five and six destroyed. Without our shields, at this range it is probable a photon detonation could destroy the Enterprise.

\", \"id\": \"72cbfef4-faaa-43dd-b16a-2e03ba8b05b7\"}]", "live": true, "path": "0001000100040001", "slug": "archives-awareness", "depth": 4, "owner": 1, "title": "Archives Awareness", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/resources/archives-awareness/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Archives Awareness", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "c4f79bb0-66ef-4db4-806f-eca3b18fc448", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 22, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "22", "created_at": "2024-08-01T17:16:19.496Z", "user": 1, "object_str": "Legacy Management Resource Portal", "content": {"pk": 22, "body": "[{\"type\": \"richtext\", \"value\": \"

Communication is not possible. The shuttle has no power. Using the gravitational pull of a star to slingshot back in time? We are going to Starbase Montgomery for Engineering consultations prompted by minor read-out anomalies. Probes have recorded unusual levels of geological activity in all five planetary systems. Assemble a team. Look at records of the Drema quadrant. Would these scans detect artificial transmissions as well as natural signals?

\", \"id\": \"d57f41b0-affb-4f32-a9e3-a150bba9269d\"}]", "live": true, "path": "0001000100040002", "slug": "legacy-management-resource-portal", "depth": 4, "owner": 1, "title": "Legacy Management Resource Portal", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/resources/legacy-management-resource-portal/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Legacy Management Resource Portal", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "dda6a036-28e5-408f-a9a3-d621716dfdd9", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 23, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "22", "created_at": "2024-08-01T17:16:46.146Z", "user": 1, "object_str": "Legacy Management Resource Portal", "content": {"pk": 22, "body": "[{\"type\": \"richtext\", \"value\": \"

Communication is not possible. The shuttle has no power. Using the gravitational pull of a star to slingshot back in time? We are going to Starbase Montgomery for Engineering consultations prompted by minor read-out anomalies. Probes have recorded unusual levels of geological activity in all five planetary systems. Assemble a team. Look at records of the Drema quadrant. Would these scans detect artificial transmissions as well as natural signals?

\", \"id\": \"d57f41b0-affb-4f32-a9e3-a150bba9269d\"}]", "live": true, "path": "0001000100040002", "slug": "legacy-management-resources-portal", "depth": 4, "owner": 1, "title": "Legacy Management Resource Portal", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/resources/legacy-management-resource-portal/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Legacy Management Resource Portal", "content_type": 44, "live_revision": 22, "show_in_menus": false, "latest_revision": 22, "translation_key": "dda6a036-28e5-408f-a9a3-d621716dfdd9", "last_published_at": "2024-08-01T17:16:19.635Z", "first_published_at": "2024-08-01T17:16:19.635Z", "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": "2024-08-01T17:16:19.496Z"}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 24, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "23", "created_at": "2024-08-01T17:17:30.087Z", "user": 1, "object_str": "Protest in the Archives", "content": {"pk": 23, "body": "[{\"type\": \"richtext\", \"value\": \"

Sensors indicate human life forms 30 meters below the planet's surface. Stellar flares are increasing in magnitude and frequency. Set course for Rhomboid Dronegar 006, warp seven. There's no evidence of an advanced communication network. Total guidance system failure, with less than 24 hours' reserve power. Shield effectiveness has been reduced 12 percent. We have covered the area in a spherical pattern which a ship without warp drive could cross in the given time.

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

\", \"id\": \"d8a5f510-6d98-4221-9985-5bc11b6f7b50\"}]", "live": true, "path": "0001000100040003", "slug": "protest-in-the-archives", "depth": 4, "owner": 1, "title": "Protest in the Archives", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/resources/protest-in-the-archives/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Protest in the Archives", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "fb623db8-8c5a-4016-8e39-53ee7d008f85", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 25, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "23", "created_at": "2024-08-01T17:17:49.410Z", "user": 1, "object_str": "Protest in the Archives", "content": {"pk": 23, "body": "[{\"type\": \"richtext\", \"value\": \"

Sensors indicate human life forms 30 meters below the planet's surface. Stellar flares are increasing in magnitude and frequency. Set course for Rhomboid Dronegar 006, warp seven. There's no evidence of an advanced communication network. Total guidance system failure, with less than 24 hours' reserve power. Shield effectiveness has been reduced 12 percent. We have covered the area in a spherical pattern which a ship without warp drive could cross in the given time.

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

\", \"id\": \"d8a5f510-6d98-4221-9985-5bc11b6f7b50\"}]", "live": true, "path": "0001000100040003", "slug": "protest-archives", "depth": 4, "owner": 1, "title": "Protest in the Archives", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/resources/protest-in-the-archives/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Protest in the Archives", "content_type": 44, "live_revision": 24, "show_in_menus": false, "latest_revision": 24, "translation_key": "fb623db8-8c5a-4016-8e39-53ee7d008f85", "last_published_at": "2024-08-01T17:17:30.222Z", "first_published_at": "2024-08-01T17:17:30.222Z", "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": "2024-08-01T17:17:30.087Z"}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 26, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "24", "created_at": "2024-08-01T17:18:22.059Z", "user": 1, "object_str": "Workshops", "content": {"pk": 24, "body": "[{\"type\": \"richtext\", \"value\": \"

Unidentified vessel travelling at sub warp speed, bearing 235.7. Fluctuations in energy readings from it, Captain. All transporters off. A strange set-up, but I'd say the graviton generator is depolarized. The dark colourings of the scrapes are the leavings of natural rubber, a type of non-conductive sole used by researchers experimenting with electricity. The molecules must have been partly de-phased by the anyon beam.

\", \"id\": \"3f6755c2-8ffd-4698-81e7-5f62f24ab23a\"}]", "live": true, "path": "0001000100040004", "slug": "workshops", "depth": 4, "owner": 1, "title": "Workshops", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/resources/workshops/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Workshops", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "08bac0d7-eeb9-47e6-b05b-29f4ffda21ce", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.revision", "pk": 27, "fields": {"content_type": 44, "base_content_type": 1, "object_id": "25", "created_at": "2024-08-01T17:19:16.247Z", "user": 1, "object_str": "Jobs", "content": {"pk": 25, "body": "[{\"type\": \"richtext\", \"value\": \"

Deflector power at maximum. Energy discharge in six seconds. Warp reactor core primary coolant failure. Fluctuate phaser resonance frequencies. Resistance is futile. Recommend we adjust shield harmonics to the upper EM band when proceeding. These appear to be some kind of power-wave-guide conduits which allow them to work collectively as they perform ship functions. Increase deflector modulation to upper frequency band.

We're acquainted with the wormhole phenomenon, but this... Is a remarkable piece of bio-electronic engineering by which I see much of the EM spectrum ranging from heat and infrared through radio waves, et cetera, and forgive me if I've said and listened to this a thousand times. This planet's interior heat provides an abundance of geothermal energy. We need to neutralize the homing signal.

Run a manual sweep of anomalous airborne or electromagnetic readings. Radiation levels in our atmosphere have increased by 3,000 percent. Electromagnetic and subspace wave fronts approaching synchronization. What is the strength of the ship's deflector shields at maximum output? The wormhole's size and short period would make this a local phenomenon. Do you have sufficient data to compile a holographic simulation?

\", \"id\": \"4f5dead2-a1c1-4528-9fec-df13e3a758d3\"}]", "live": true, "path": "0001000100040005", "slug": "jobs", "depth": 4, "owner": 1, "title": "Jobs", "locale": 1, "locked": false, "expired": false, "sidebar": [], "alias_of": null, "numchild": 0, "url_path": "/home/resources/jobs/", "expire_at": null, "locked_at": null, "locked_by": null, "seo_title": "", "go_live_at": null, "draft_title": "Jobs", "content_type": 44, "live_revision": null, "show_in_menus": false, "latest_revision": null, "translation_key": "e472a27c-95cc-4d5b-ae3f-12e5119b4c56", "last_published_at": null, "first_published_at": null, "search_description": "", "wagtail_admin_comments": [], "has_unpublished_changes": false, "latest_revision_created_at": null}, "approved_go_live_at": null}}, {"model": "wagtailcore.grouppagepermission", "pk": 1, "fields": {"group": 1, "page": 1, "permission": 38}}, {"model": "wagtailcore.grouppagepermission", "pk": 2, "fields": {"group": 1, "page": 1, "permission": 39}}, {"model": "wagtailcore.grouppagepermission", "pk": 3, "fields": {"group": 1, "page": 1, "permission": 44}}, {"model": "wagtailcore.grouppagepermission", "pk": 4, "fields": {"group": 2, "page": 1, "permission": 38}}, {"model": "wagtailcore.grouppagepermission", "pk": 5, "fields": {"group": 2, "page": 1, "permission": 39}}, {"model": "wagtailcore.grouppagepermission", "pk": 6, "fields": {"group": 1, "page": 1, "permission": 43}}, {"model": "wagtailcore.grouppagepermission", "pk": 7, "fields": {"group": 1, "page": 1, "permission": 45}}, {"model": "wagtailcore.workflowpage", "pk": 1, "fields": {"workflow": 1}}, {"model": "wagtailcore.workflowtask", "pk": 1, "fields": {"sort_order": 0, "workflow": 1, "task": 1}}, {"model": "wagtailcore.task", "pk": 1, "fields": {"name": "Moderators approval", "content_type": 4, "active": true}}, {"model": "wagtailcore.workflow", "pk": 1, "fields": {"name": "Moderators approval", "active": true}}, {"model": "wagtailcore.groupapprovaltask", "pk": 1, "fields": {"groups": [1]}}, {"model": "wagtailcore.pagelogentry", "pk": 1, "fields": {"content_type": 3, "label": "Home", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T14:21:06.319Z", "uuid": "5dca9e9d-250d-4145-b396-5ea808284997", "user": 1, "revision": 1, "content_changed": true, "deleted": false, "page": 3}}, {"model": "wagtailcore.pagelogentry", "pk": 2, "fields": {"content_type": 3, "label": "Home", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T14:21:06.412Z", "uuid": "5dca9e9d-250d-4145-b396-5ea808284997", "user": 1, "revision": 1, "content_changed": true, "deleted": false, "page": 3}}, {"model": "wagtailcore.pagelogentry", "pk": 3, "fields": {"content_type": 46, "label": "News", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T14:24:51.458Z", "uuid": "8b5cd2bc-77c6-4fbf-be6d-b6e80f6d2070", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 4}}, {"model": "wagtailcore.pagelogentry", "pk": 4, "fields": {"content_type": 46, "label": "News", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T14:24:51.541Z", "uuid": "8b5cd2bc-77c6-4fbf-be6d-b6e80f6d2070", "user": 1, "revision": 2, "content_changed": true, "deleted": false, "page": 4}}, {"model": "wagtailcore.pagelogentry", "pk": 5, "fields": {"content_type": 46, "label": "News", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T14:24:51.679Z", "uuid": "8b5cd2bc-77c6-4fbf-be6d-b6e80f6d2070", "user": 1, "revision": 2, "content_changed": true, "deleted": false, "page": 4}}, {"model": "wagtailcore.pagelogentry", "pk": 6, "fields": {"content_type": 47, "label": "Materialized Out of Patterns", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T14:25:37.111Z", "uuid": "0ab123b8-a122-448d-943a-2d32d76cbbc7", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 5}}, {"model": "wagtailcore.pagelogentry", "pk": 7, "fields": {"content_type": 47, "label": "Materialized Out of Patterns", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T14:25:37.175Z", "uuid": "0ab123b8-a122-448d-943a-2d32d76cbbc7", "user": 1, "revision": 3, "content_changed": true, "deleted": false, "page": 5}}, {"model": "wagtailcore.pagelogentry", "pk": 8, "fields": {"content_type": 47, "label": "Materialized Out of Patterns", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T14:25:37.269Z", "uuid": "0ab123b8-a122-448d-943a-2d32d76cbbc7", "user": 1, "revision": 3, "content_changed": true, "deleted": false, "page": 5}}, {"model": "wagtailcore.pagelogentry", "pk": 9, "fields": {"content_type": 3, "label": "Home", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T14:42:05.520Z", "uuid": "fa986813-21c2-4a92-8599-573dc52f6bdf", "user": 1, "revision": 4, "content_changed": true, "deleted": false, "page": 3}}, {"model": "wagtailcore.pagelogentry", "pk": 10, "fields": {"content_type": 3, "label": "Home", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T14:42:05.720Z", "uuid": "fa986813-21c2-4a92-8599-573dc52f6bdf", "user": 1, "revision": 4, "content_changed": true, "deleted": false, "page": 3}}, {"model": "wagtailcore.pagelogentry", "pk": 11, "fields": {"content_type": 44, "label": "Programs", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T16:54:41.159Z", "uuid": "1174cb4e-bdfe-44b4-89b7-64c4196f9798", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 6}}, {"model": "wagtailcore.pagelogentry", "pk": 12, "fields": {"content_type": 44, "label": "Programs", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T16:54:41.272Z", "uuid": "1174cb4e-bdfe-44b4-89b7-64c4196f9798", "user": 1, "revision": 5, "content_changed": true, "deleted": false, "page": 6}}, {"model": "wagtailcore.pagelogentry", "pk": 13, "fields": {"content_type": 44, "label": "Programs", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T16:54:41.525Z", "uuid": "1174cb4e-bdfe-44b4-89b7-64c4196f9798", "user": 1, "revision": 5, "content_changed": true, "deleted": false, "page": 6}}, {"model": "wagtailcore.pagelogentry", "pk": 14, "fields": {"content_type": 44, "label": "About", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T16:55:17.226Z", "uuid": "8b65a735-b679-4ac9-90e5-dec0f3d32d0b", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 7}}, {"model": "wagtailcore.pagelogentry", "pk": 15, "fields": {"content_type": 44, "label": "About", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T16:55:17.297Z", "uuid": "8b65a735-b679-4ac9-90e5-dec0f3d32d0b", "user": 1, "revision": 6, "content_changed": true, "deleted": false, "page": 7}}, {"model": "wagtailcore.pagelogentry", "pk": 16, "fields": {"content_type": 44, "label": "About", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T16:55:17.472Z", "uuid": "8b65a735-b679-4ac9-90e5-dec0f3d32d0b", "user": 1, "revision": 6, "content_changed": true, "deleted": false, "page": 7}}, {"model": "wagtailcore.pagelogentry", "pk": 17, "fields": {"content_type": 44, "label": "Resources", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T16:56:09.417Z", "uuid": "8abf03f7-7edc-4f25-836a-58f561ca1172", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 8}}, {"model": "wagtailcore.pagelogentry", "pk": 18, "fields": {"content_type": 44, "label": "Resources", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T16:56:09.490Z", "uuid": "8abf03f7-7edc-4f25-836a-58f561ca1172", "user": 1, "revision": 7, "content_changed": true, "deleted": false, "page": 8}}, {"model": "wagtailcore.pagelogentry", "pk": 19, "fields": {"content_type": 44, "label": "Resources", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T16:56:09.589Z", "uuid": "8abf03f7-7edc-4f25-836a-58f561ca1172", "user": 1, "revision": 7, "content_changed": true, "deleted": false, "page": 8}}, {"model": "wagtailcore.pagelogentry", "pk": 20, "fields": {"content_type": 44, "label": "Contact", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T16:57:26.365Z", "uuid": "4b77ba9d-bb0d-45dd-94c6-339edd12adf8", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 9}}, {"model": "wagtailcore.pagelogentry", "pk": 21, "fields": {"content_type": 44, "label": "Contact", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T16:57:26.453Z", "uuid": "4b77ba9d-bb0d-45dd-94c6-339edd12adf8", "user": 1, "revision": 8, "content_changed": true, "deleted": false, "page": 9}}, {"model": "wagtailcore.pagelogentry", "pk": 22, "fields": {"content_type": 44, "label": "Contact", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T16:57:26.572Z", "uuid": "4b77ba9d-bb0d-45dd-94c6-339edd12adf8", "user": 1, "revision": 8, "content_changed": true, "deleted": false, "page": 9}}, {"model": "wagtailcore.pagelogentry", "pk": 23, "fields": {"content_type": 47, "label": "Support BMRC", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T16:58:36.412Z", "uuid": "a7815644-9440-44dd-b8e3-76ddc1be5fff", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 10}}, {"model": "wagtailcore.pagelogentry", "pk": 24, "fields": {"content_type": 47, "label": "Support BMRC", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T16:58:36.502Z", "uuid": "a7815644-9440-44dd-b8e3-76ddc1be5fff", "user": 1, "revision": 9, "content_changed": true, "deleted": false, "page": 10}}, {"model": "wagtailcore.pagelogentry", "pk": 25, "fields": {"content_type": 47, "label": "Support BMRC", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T16:58:36.701Z", "uuid": "a7815644-9440-44dd-b8e3-76ddc1be5fff", "user": 1, "revision": 9, "content_changed": true, "deleted": false, "page": 10}}, {"model": "wagtailcore.pagelogentry", "pk": 26, "fields": {"content_type": 36, "label": "Portal", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T17:00:45.563Z", "uuid": "d59bef7c-80ad-4828-811b-a94e00f36e22", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 11}}, {"model": "wagtailcore.pagelogentry", "pk": 27, "fields": {"content_type": 36, "label": "Portal", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:00:45.656Z", "uuid": "d59bef7c-80ad-4828-811b-a94e00f36e22", "user": 1, "revision": 10, "content_changed": true, "deleted": false, "page": 11}}, {"model": "wagtailcore.pagelogentry", "pk": 28, "fields": {"content_type": 36, "label": "Portal", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:00:45.789Z", "uuid": "d59bef7c-80ad-4828-811b-a94e00f36e22", "user": 1, "revision": 10, "content_changed": true, "deleted": false, "page": 11}}, {"model": "wagtailcore.pagelogentry", "pk": 29, "fields": {"content_type": 44, "label": "Summer Short-Term Fellowship", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T17:06:22.209Z", "uuid": "e3331a3f-9671-40a3-bcff-d581c72f8f09", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 12}}, {"model": "wagtailcore.pagelogentry", "pk": 30, "fields": {"content_type": 44, "label": "Summer Short-Term Fellowship", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:06:22.299Z", "uuid": "e3331a3f-9671-40a3-bcff-d581c72f8f09", "user": 1, "revision": 11, "content_changed": true, "deleted": false, "page": 12}}, {"model": "wagtailcore.pagelogentry", "pk": 31, "fields": {"content_type": 44, "label": "Summer Short-Term Fellowship", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:06:22.444Z", "uuid": "e3331a3f-9671-40a3-bcff-d581c72f8f09", "user": 1, "revision": 11, "content_changed": true, "deleted": false, "page": 12}}, {"model": "wagtailcore.pagelogentry", "pk": 32, "fields": {"content_type": 44, "label": "Archie Motley Archival Internship Program", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T17:07:21.026Z", "uuid": "29e4e9c9-4598-4253-8b91-8ec1a53c63c1", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 13}}, {"model": "wagtailcore.pagelogentry", "pk": 33, "fields": {"content_type": 44, "label": "Archie Motley Archival Internship Program", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:07:21.093Z", "uuid": "29e4e9c9-4598-4253-8b91-8ec1a53c63c1", "user": 1, "revision": 12, "content_changed": true, "deleted": false, "page": 13}}, {"model": "wagtailcore.pagelogentry", "pk": 34, "fields": {"content_type": 44, "label": "Archie Motley Archival Internship Program", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:07:21.219Z", "uuid": "29e4e9c9-4598-4253-8b91-8ec1a53c63c1", "user": 1, "revision": 12, "content_changed": true, "deleted": false, "page": 13}}, {"model": "wagtailcore.pagelogentry", "pk": 35, "fields": {"content_type": 44, "label": "Color Curtain Processing Project", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T17:08:02.277Z", "uuid": "232b308c-f330-4803-8d16-4fc07a6e1335", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 14}}, {"model": "wagtailcore.pagelogentry", "pk": 36, "fields": {"content_type": 44, "label": "Color Curtain Processing Project", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:08:02.335Z", "uuid": "232b308c-f330-4803-8d16-4fc07a6e1335", "user": 1, "revision": 13, "content_changed": true, "deleted": false, "page": 14}}, {"model": "wagtailcore.pagelogentry", "pk": 37, "fields": {"content_type": 44, "label": "Color Curtain Processing Project", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:08:02.452Z", "uuid": "232b308c-f330-4803-8d16-4fc07a6e1335", "user": 1, "revision": 13, "content_changed": true, "deleted": false, "page": 14}}, {"model": "wagtailcore.pagelogentry", "pk": 38, "fields": {"content_type": 44, "label": "Survey Initiative", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T17:08:39.140Z", "uuid": "eedaaf00-ee44-4d93-b290-172b9141549a", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 15}}, {"model": "wagtailcore.pagelogentry", "pk": 39, "fields": {"content_type": 44, "label": "Survey Initiative", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:08:39.219Z", "uuid": "eedaaf00-ee44-4d93-b290-172b9141549a", "user": 1, "revision": 14, "content_changed": true, "deleted": false, "page": 15}}, {"model": "wagtailcore.pagelogentry", "pk": 40, "fields": {"content_type": 44, "label": "Survey Initiative", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:08:39.358Z", "uuid": "eedaaf00-ee44-4d93-b290-172b9141549a", "user": 1, "revision": 14, "content_changed": true, "deleted": false, "page": 15}}, {"model": "wagtailcore.pagelogentry", "pk": 41, "fields": {"content_type": 44, "label": "Membership Information", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T17:10:01.083Z", "uuid": "fa663f24-9a4f-4a41-9225-8a83aa31604e", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 16}}, {"model": "wagtailcore.pagelogentry", "pk": 42, "fields": {"content_type": 44, "label": "Membership Information", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:10:01.138Z", "uuid": "fa663f24-9a4f-4a41-9225-8a83aa31604e", "user": 1, "revision": 15, "content_changed": true, "deleted": false, "page": 16}}, {"model": "wagtailcore.pagelogentry", "pk": 43, "fields": {"content_type": 44, "label": "Membership Information", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:10:01.246Z", "uuid": "fa663f24-9a4f-4a41-9225-8a83aa31604e", "user": 1, "revision": 15, "content_changed": true, "deleted": false, "page": 16}}, {"model": "wagtailcore.pagelogentry", "pk": 44, "fields": {"content_type": 44, "label": "Current Members", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T17:10:37.814Z", "uuid": "3d6b952f-3e9b-4f7e-af88-9b8ad818f993", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 17}}, {"model": "wagtailcore.pagelogentry", "pk": 45, "fields": {"content_type": 44, "label": "Current Members", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:10:37.893Z", "uuid": "3d6b952f-3e9b-4f7e-af88-9b8ad818f993", "user": 1, "revision": 16, "content_changed": true, "deleted": false, "page": 17}}, {"model": "wagtailcore.pagelogentry", "pk": 46, "fields": {"content_type": 44, "label": "Current Members", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:10:38.071Z", "uuid": "3d6b952f-3e9b-4f7e-af88-9b8ad818f993", "user": 1, "revision": 16, "content_changed": true, "deleted": false, "page": 17}}, {"model": "wagtailcore.pagelogentry", "pk": 47, "fields": {"content_type": 44, "label": "Current Members", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:11:04.579Z", "uuid": "41d63021-c5ca-45c9-be23-b15a344f8236", "user": 1, "revision": 17, "content_changed": true, "deleted": false, "page": 17}}, {"model": "wagtailcore.pagelogentry", "pk": 48, "fields": {"content_type": 44, "label": "Current Members", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:11:04.890Z", "uuid": "41d63021-c5ca-45c9-be23-b15a344f8236", "user": 1, "revision": 17, "content_changed": true, "deleted": false, "page": 17}}, {"model": "wagtailcore.pagelogentry", "pk": 49, "fields": {"content_type": 44, "label": "Partnerships", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T17:11:40.791Z", "uuid": "94051827-14e0-4aac-a0bb-d1bd7a038d1a", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 18}}, {"model": "wagtailcore.pagelogentry", "pk": 50, "fields": {"content_type": 44, "label": "Partnerships", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:11:40.886Z", "uuid": "94051827-14e0-4aac-a0bb-d1bd7a038d1a", "user": 1, "revision": 18, "content_changed": true, "deleted": false, "page": 18}}, {"model": "wagtailcore.pagelogentry", "pk": 51, "fields": {"content_type": 44, "label": "Partnerships", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:11:41.083Z", "uuid": "94051827-14e0-4aac-a0bb-d1bd7a038d1a", "user": 1, "revision": 18, "content_changed": true, "deleted": false, "page": 18}}, {"model": "wagtailcore.pagelogentry", "pk": 52, "fields": {"content_type": 44, "label": "Board & Committees", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T17:12:49.471Z", "uuid": "19bc5be3-5305-42ea-bb0c-0213aee8f0a2", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 19}}, {"model": "wagtailcore.pagelogentry", "pk": 53, "fields": {"content_type": 44, "label": "Board & Committees", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:12:49.562Z", "uuid": "19bc5be3-5305-42ea-bb0c-0213aee8f0a2", "user": 1, "revision": 19, "content_changed": true, "deleted": false, "page": 19}}, {"model": "wagtailcore.pagelogentry", "pk": 54, "fields": {"content_type": 44, "label": "Board & Committees", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:12:49.716Z", "uuid": "19bc5be3-5305-42ea-bb0c-0213aee8f0a2", "user": 1, "revision": 19, "content_changed": true, "deleted": false, "page": 19}}, {"model": "wagtailcore.pagelogentry", "pk": 55, "fields": {"content_type": 44, "label": "Staff", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T17:13:49.461Z", "uuid": "fc76feee-ade6-48a7-a88f-042e1d16507e", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 20}}, {"model": "wagtailcore.pagelogentry", "pk": 56, "fields": {"content_type": 44, "label": "Staff", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:13:49.552Z", "uuid": "fc76feee-ade6-48a7-a88f-042e1d16507e", "user": 1, "revision": 20, "content_changed": true, "deleted": false, "page": 20}}, {"model": "wagtailcore.pagelogentry", "pk": 57, "fields": {"content_type": 44, "label": "Staff", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:13:49.727Z", "uuid": "fc76feee-ade6-48a7-a88f-042e1d16507e", "user": 1, "revision": 20, "content_changed": true, "deleted": false, "page": 20}}, {"model": "wagtailcore.pagelogentry", "pk": 58, "fields": {"content_type": 44, "label": "Archives Awareness", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T17:15:29.959Z", "uuid": "a4a66208-6ca8-4f6d-961b-5a201c6a87d3", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 21}}, {"model": "wagtailcore.pagelogentry", "pk": 59, "fields": {"content_type": 44, "label": "Archives Awareness", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:15:30.125Z", "uuid": "a4a66208-6ca8-4f6d-961b-5a201c6a87d3", "user": 1, "revision": 21, "content_changed": true, "deleted": false, "page": 21}}, {"model": "wagtailcore.pagelogentry", "pk": 60, "fields": {"content_type": 44, "label": "Archives Awareness", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:15:30.323Z", "uuid": "a4a66208-6ca8-4f6d-961b-5a201c6a87d3", "user": 1, "revision": 21, "content_changed": true, "deleted": false, "page": 21}}, {"model": "wagtailcore.pagelogentry", "pk": 61, "fields": {"content_type": 44, "label": "Legacy Management Resource Portal", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T17:16:19.439Z", "uuid": "6d4fad8a-3397-4565-bd89-7d8570ceb9e1", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 22}}, {"model": "wagtailcore.pagelogentry", "pk": 62, "fields": {"content_type": 44, "label": "Legacy Management Resource Portal", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:16:19.572Z", "uuid": "6d4fad8a-3397-4565-bd89-7d8570ceb9e1", "user": 1, "revision": 22, "content_changed": true, "deleted": false, "page": 22}}, {"model": "wagtailcore.pagelogentry", "pk": 63, "fields": {"content_type": 44, "label": "Legacy Management Resource Portal", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:16:19.827Z", "uuid": "6d4fad8a-3397-4565-bd89-7d8570ceb9e1", "user": 1, "revision": 22, "content_changed": true, "deleted": false, "page": 22}}, {"model": "wagtailcore.pagelogentry", "pk": 64, "fields": {"content_type": 44, "label": "Legacy Management Resource Portal", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:16:46.188Z", "uuid": "74c367ff-0a68-48a0-b1b4-1a39d00b05e7", "user": 1, "revision": 23, "content_changed": true, "deleted": false, "page": 22}}, {"model": "wagtailcore.pagelogentry", "pk": 65, "fields": {"content_type": 44, "label": "Legacy Management Resource Portal", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:16:46.387Z", "uuid": "74c367ff-0a68-48a0-b1b4-1a39d00b05e7", "user": 1, "revision": 23, "content_changed": true, "deleted": false, "page": 22}}, {"model": "wagtailcore.pagelogentry", "pk": 66, "fields": {"content_type": 44, "label": "Protest in the Archives", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T17:17:29.996Z", "uuid": "8969d863-b268-40a9-879a-62aab1267927", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 23}}, {"model": "wagtailcore.pagelogentry", "pk": 67, "fields": {"content_type": 44, "label": "Protest in the Archives", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:17:30.167Z", "uuid": "8969d863-b268-40a9-879a-62aab1267927", "user": 1, "revision": 24, "content_changed": true, "deleted": false, "page": 23}}, {"model": "wagtailcore.pagelogentry", "pk": 68, "fields": {"content_type": 44, "label": "Protest in the Archives", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:17:30.369Z", "uuid": "8969d863-b268-40a9-879a-62aab1267927", "user": 1, "revision": 24, "content_changed": true, "deleted": false, "page": 23}}, {"model": "wagtailcore.pagelogentry", "pk": 69, "fields": {"content_type": 44, "label": "Protest in the Archives", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:17:49.456Z", "uuid": "5f167e7f-e305-4cb0-a76f-e0ecd27e62f7", "user": 1, "revision": 25, "content_changed": true, "deleted": false, "page": 23}}, {"model": "wagtailcore.pagelogentry", "pk": 70, "fields": {"content_type": 44, "label": "Protest in the Archives", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:17:49.638Z", "uuid": "5f167e7f-e305-4cb0-a76f-e0ecd27e62f7", "user": 1, "revision": 25, "content_changed": true, "deleted": false, "page": 23}}, {"model": "wagtailcore.pagelogentry", "pk": 71, "fields": {"content_type": 44, "label": "Workshops", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T17:18:22.020Z", "uuid": "7f872b9e-d5eb-49ac-8678-60eac045b7fa", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 24}}, {"model": "wagtailcore.pagelogentry", "pk": 72, "fields": {"content_type": 44, "label": "Workshops", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:18:22.103Z", "uuid": "7f872b9e-d5eb-49ac-8678-60eac045b7fa", "user": 1, "revision": 26, "content_changed": true, "deleted": false, "page": 24}}, {"model": "wagtailcore.pagelogentry", "pk": 73, "fields": {"content_type": 44, "label": "Workshops", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:18:22.262Z", "uuid": "7f872b9e-d5eb-49ac-8678-60eac045b7fa", "user": 1, "revision": 26, "content_changed": true, "deleted": false, "page": 24}}, {"model": "wagtailcore.pagelogentry", "pk": 74, "fields": {"content_type": 44, "label": "Jobs", "action": "wagtail.create", "data": {}, "timestamp": "2024-08-01T17:19:16.194Z", "uuid": "be32aeb4-8794-4bf8-a89b-e4d4bc6ac19c", "user": 1, "revision": null, "content_changed": true, "deleted": false, "page": 25}}, {"model": "wagtailcore.pagelogentry", "pk": 75, "fields": {"content_type": 44, "label": "Jobs", "action": "wagtail.edit", "data": {}, "timestamp": "2024-08-01T17:19:16.334Z", "uuid": "be32aeb4-8794-4bf8-a89b-e4d4bc6ac19c", "user": 1, "revision": 27, "content_changed": true, "deleted": false, "page": 25}}, {"model": "wagtailcore.pagelogentry", "pk": 76, "fields": {"content_type": 44, "label": "Jobs", "action": "wagtail.publish", "data": {}, "timestamp": "2024-08-01T17:19:16.533Z", "uuid": "be32aeb4-8794-4bf8-a89b-e4d4bc6ac19c", "user": 1, "revision": 27, "content_changed": true, "deleted": false, "page": 25}}, {"model": "wagtailcore.pagesubscription", "pk": 1, "fields": {"user": 1, "page": 3, "comment_notifications": false}}, {"model": "wagtailcore.pagesubscription", "pk": 2, "fields": {"user": 1, "page": 4, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 3, "fields": {"user": 1, "page": 5, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 4, "fields": {"user": 1, "page": 6, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 5, "fields": {"user": 1, "page": 7, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 6, "fields": {"user": 1, "page": 8, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 7, "fields": {"user": 1, "page": 9, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 8, "fields": {"user": 1, "page": 10, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 9, "fields": {"user": 1, "page": 11, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 10, "fields": {"user": 1, "page": 12, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 11, "fields": {"user": 1, "page": 13, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 12, "fields": {"user": 1, "page": 14, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 13, "fields": {"user": 1, "page": 15, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 14, "fields": {"user": 1, "page": 16, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 15, "fields": {"user": 1, "page": 17, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 16, "fields": {"user": 1, "page": 18, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 17, "fields": {"user": 1, "page": 19, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 18, "fields": {"user": 1, "page": 20, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 19, "fields": {"user": 1, "page": 21, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 20, "fields": {"user": 1, "page": 22, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 21, "fields": {"user": 1, "page": 23, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 22, "fields": {"user": 1, "page": 24, "comment_notifications": true}}, {"model": "wagtailcore.pagesubscription", "pk": 23, "fields": {"user": 1, "page": 25, "comment_notifications": true}}, {"model": "auth.permission", "pk": 1, "fields": {"name": "Can add image", "content_type": 2, "codename": "add_image"}}, {"model": "auth.permission", "pk": 2, "fields": {"name": "Can change image", "content_type": 2, "codename": "change_image"}}, {"model": "auth.permission", "pk": 3, "fields": {"name": "Can delete image", "content_type": 2, "codename": "delete_image"}}, {"model": "auth.permission", "pk": 4, "fields": {"name": "Can choose image", "content_type": 2, "codename": "choose_image"}}, {"model": "auth.permission", "pk": 5, "fields": {"name": "Can access Wagtail admin", "content_type": 5, "codename": "access_admin"}}, {"model": "auth.permission", "pk": 6, "fields": {"name": "Can add locale", "content_type": 6, "codename": "add_locale"}}, {"model": "auth.permission", "pk": 7, "fields": {"name": "Can change locale", "content_type": 6, "codename": "change_locale"}}, {"model": "auth.permission", "pk": 8, "fields": {"name": "Can delete locale", "content_type": 6, "codename": "delete_locale"}}, {"model": "auth.permission", "pk": 9, "fields": {"name": "Can view locale", "content_type": 6, "codename": "view_locale"}}, {"model": "auth.permission", "pk": 10, "fields": {"name": "Can add site", "content_type": 7, "codename": "add_site"}}, {"model": "auth.permission", "pk": 11, "fields": {"name": "Can change site", "content_type": 7, "codename": "change_site"}}, {"model": "auth.permission", "pk": 12, "fields": {"name": "Can delete site", "content_type": 7, "codename": "delete_site"}}, {"model": "auth.permission", "pk": 13, "fields": {"name": "Can view site", "content_type": 7, "codename": "view_site"}}, {"model": "auth.permission", "pk": 14, "fields": {"name": "Can add model log entry", "content_type": 8, "codename": "add_modellogentry"}}, {"model": "auth.permission", "pk": 15, "fields": {"name": "Can change model log entry", "content_type": 8, "codename": "change_modellogentry"}}, {"model": "auth.permission", "pk": 16, "fields": {"name": "Can delete model log entry", "content_type": 8, "codename": "delete_modellogentry"}}, {"model": "auth.permission", "pk": 17, "fields": {"name": "Can view model log entry", "content_type": 8, "codename": "view_modellogentry"}}, {"model": "auth.permission", "pk": 18, "fields": {"name": "Can add collection view restriction", "content_type": 9, "codename": "add_collectionviewrestriction"}}, {"model": "auth.permission", "pk": 19, "fields": {"name": "Can change collection view restriction", "content_type": 9, "codename": "change_collectionviewrestriction"}}, {"model": "auth.permission", "pk": 20, "fields": {"name": "Can delete collection view restriction", "content_type": 9, "codename": "delete_collectionviewrestriction"}}, {"model": "auth.permission", "pk": 21, "fields": {"name": "Can view collection view restriction", "content_type": 9, "codename": "view_collectionviewrestriction"}}, {"model": "auth.permission", "pk": 22, "fields": {"name": "Can add collection", "content_type": 10, "codename": "add_collection"}}, {"model": "auth.permission", "pk": 23, "fields": {"name": "Can change collection", "content_type": 10, "codename": "change_collection"}}, {"model": "auth.permission", "pk": 24, "fields": {"name": "Can delete collection", "content_type": 10, "codename": "delete_collection"}}, {"model": "auth.permission", "pk": 25, "fields": {"name": "Can view collection", "content_type": 10, "codename": "view_collection"}}, {"model": "auth.permission", "pk": 26, "fields": {"name": "Can add group collection permission", "content_type": 11, "codename": "add_groupcollectionpermission"}}, {"model": "auth.permission", "pk": 27, "fields": {"name": "Can change group collection permission", "content_type": 11, "codename": "change_groupcollectionpermission"}}, {"model": "auth.permission", "pk": 28, "fields": {"name": "Can delete group collection permission", "content_type": 11, "codename": "delete_groupcollectionpermission"}}, {"model": "auth.permission", "pk": 29, "fields": {"name": "Can view group collection permission", "content_type": 11, "codename": "view_groupcollectionpermission"}}, {"model": "auth.permission", "pk": 30, "fields": {"name": "Can add uploaded file", "content_type": 12, "codename": "add_uploadedfile"}}, {"model": "auth.permission", "pk": 31, "fields": {"name": "Can change uploaded file", "content_type": 12, "codename": "change_uploadedfile"}}, {"model": "auth.permission", "pk": 32, "fields": {"name": "Can delete uploaded file", "content_type": 12, "codename": "delete_uploadedfile"}}, {"model": "auth.permission", "pk": 33, "fields": {"name": "Can view uploaded file", "content_type": 12, "codename": "view_uploadedfile"}}, {"model": "auth.permission", "pk": 34, "fields": {"name": "Can add reference index", "content_type": 13, "codename": "add_referenceindex"}}, {"model": "auth.permission", "pk": 35, "fields": {"name": "Can change reference index", "content_type": 13, "codename": "change_referenceindex"}}, {"model": "auth.permission", "pk": 36, "fields": {"name": "Can delete reference index", "content_type": 13, "codename": "delete_referenceindex"}}, {"model": "auth.permission", "pk": 37, "fields": {"name": "Can view reference index", "content_type": 13, "codename": "view_referenceindex"}}, {"model": "auth.permission", "pk": 38, "fields": {"name": "Can add page", "content_type": 1, "codename": "add_page"}}, {"model": "auth.permission", "pk": 39, "fields": {"name": "Can change page", "content_type": 1, "codename": "change_page"}}, {"model": "auth.permission", "pk": 40, "fields": {"name": "Can delete page", "content_type": 1, "codename": "delete_page"}}, {"model": "auth.permission", "pk": 41, "fields": {"name": "Can view page", "content_type": 1, "codename": "view_page"}}, {"model": "auth.permission", "pk": 42, "fields": {"name": "Delete pages with children", "content_type": 1, "codename": "bulk_delete_page"}}, {"model": "auth.permission", "pk": 43, "fields": {"name": "Lock/unlock pages you've locked", "content_type": 1, "codename": "lock_page"}}, {"model": "auth.permission", "pk": 44, "fields": {"name": "Publish any page", "content_type": 1, "codename": "publish_page"}}, {"model": "auth.permission", "pk": 45, "fields": {"name": "Unlock any page", "content_type": 1, "codename": "unlock_page"}}, {"model": "auth.permission", "pk": 46, "fields": {"name": "Can add revision", "content_type": 14, "codename": "add_revision"}}, {"model": "auth.permission", "pk": 47, "fields": {"name": "Can change revision", "content_type": 14, "codename": "change_revision"}}, {"model": "auth.permission", "pk": 48, "fields": {"name": "Can delete revision", "content_type": 14, "codename": "delete_revision"}}, {"model": "auth.permission", "pk": 49, "fields": {"name": "Can view revision", "content_type": 14, "codename": "view_revision"}}, {"model": "auth.permission", "pk": 50, "fields": {"name": "Can add group page permission", "content_type": 15, "codename": "add_grouppagepermission"}}, {"model": "auth.permission", "pk": 51, "fields": {"name": "Can change group page permission", "content_type": 15, "codename": "change_grouppagepermission"}}, {"model": "auth.permission", "pk": 52, "fields": {"name": "Can delete group page permission", "content_type": 15, "codename": "delete_grouppagepermission"}}, {"model": "auth.permission", "pk": 53, "fields": {"name": "Can view group page permission", "content_type": 15, "codename": "view_grouppagepermission"}}, {"model": "auth.permission", "pk": 54, "fields": {"name": "Can add page view restriction", "content_type": 16, "codename": "add_pageviewrestriction"}}, {"model": "auth.permission", "pk": 55, "fields": {"name": "Can change page view restriction", "content_type": 16, "codename": "change_pageviewrestriction"}}, {"model": "auth.permission", "pk": 56, "fields": {"name": "Can delete page view restriction", "content_type": 16, "codename": "delete_pageviewrestriction"}}, {"model": "auth.permission", "pk": 57, "fields": {"name": "Can view page view restriction", "content_type": 16, "codename": "view_pageviewrestriction"}}, {"model": "auth.permission", "pk": 58, "fields": {"name": "Can add workflow page", "content_type": 17, "codename": "add_workflowpage"}}, {"model": "auth.permission", "pk": 59, "fields": {"name": "Can change workflow page", "content_type": 17, "codename": "change_workflowpage"}}, {"model": "auth.permission", "pk": 60, "fields": {"name": "Can delete workflow page", "content_type": 17, "codename": "delete_workflowpage"}}, {"model": "auth.permission", "pk": 61, "fields": {"name": "Can view workflow page", "content_type": 17, "codename": "view_workflowpage"}}, {"model": "auth.permission", "pk": 62, "fields": {"name": "Can add workflow content type", "content_type": 18, "codename": "add_workflowcontenttype"}}, {"model": "auth.permission", "pk": 63, "fields": {"name": "Can change workflow content type", "content_type": 18, "codename": "change_workflowcontenttype"}}, {"model": "auth.permission", "pk": 64, "fields": {"name": "Can delete workflow content type", "content_type": 18, "codename": "delete_workflowcontenttype"}}, {"model": "auth.permission", "pk": 65, "fields": {"name": "Can view workflow content type", "content_type": 18, "codename": "view_workflowcontenttype"}}, {"model": "auth.permission", "pk": 66, "fields": {"name": "Can add workflow task order", "content_type": 19, "codename": "add_workflowtask"}}, {"model": "auth.permission", "pk": 67, "fields": {"name": "Can change workflow task order", "content_type": 19, "codename": "change_workflowtask"}}, {"model": "auth.permission", "pk": 68, "fields": {"name": "Can delete workflow task order", "content_type": 19, "codename": "delete_workflowtask"}}, {"model": "auth.permission", "pk": 69, "fields": {"name": "Can view workflow task order", "content_type": 19, "codename": "view_workflowtask"}}, {"model": "auth.permission", "pk": 70, "fields": {"name": "Can add task", "content_type": 20, "codename": "add_task"}}, {"model": "auth.permission", "pk": 71, "fields": {"name": "Can change task", "content_type": 20, "codename": "change_task"}}, {"model": "auth.permission", "pk": 72, "fields": {"name": "Can delete task", "content_type": 20, "codename": "delete_task"}}, {"model": "auth.permission", "pk": 73, "fields": {"name": "Can view task", "content_type": 20, "codename": "view_task"}}, {"model": "auth.permission", "pk": 74, "fields": {"name": "Can add workflow", "content_type": 21, "codename": "add_workflow"}}, {"model": "auth.permission", "pk": 75, "fields": {"name": "Can change workflow", "content_type": 21, "codename": "change_workflow"}}, {"model": "auth.permission", "pk": 76, "fields": {"name": "Can delete workflow", "content_type": 21, "codename": "delete_workflow"}}, {"model": "auth.permission", "pk": 77, "fields": {"name": "Can view workflow", "content_type": 21, "codename": "view_workflow"}}, {"model": "auth.permission", "pk": 78, "fields": {"name": "Can add Group approval task", "content_type": 4, "codename": "add_groupapprovaltask"}}, {"model": "auth.permission", "pk": 79, "fields": {"name": "Can change Group approval task", "content_type": 4, "codename": "change_groupapprovaltask"}}, {"model": "auth.permission", "pk": 80, "fields": {"name": "Can delete Group approval task", "content_type": 4, "codename": "delete_groupapprovaltask"}}, {"model": "auth.permission", "pk": 81, "fields": {"name": "Can view Group approval task", "content_type": 4, "codename": "view_groupapprovaltask"}}, {"model": "auth.permission", "pk": 82, "fields": {"name": "Can add Workflow state", "content_type": 22, "codename": "add_workflowstate"}}, {"model": "auth.permission", "pk": 83, "fields": {"name": "Can change Workflow state", "content_type": 22, "codename": "change_workflowstate"}}, {"model": "auth.permission", "pk": 84, "fields": {"name": "Can delete Workflow state", "content_type": 22, "codename": "delete_workflowstate"}}, {"model": "auth.permission", "pk": 85, "fields": {"name": "Can view Workflow state", "content_type": 22, "codename": "view_workflowstate"}}, {"model": "auth.permission", "pk": 86, "fields": {"name": "Can add Task state", "content_type": 23, "codename": "add_taskstate"}}, {"model": "auth.permission", "pk": 87, "fields": {"name": "Can change Task state", "content_type": 23, "codename": "change_taskstate"}}, {"model": "auth.permission", "pk": 88, "fields": {"name": "Can delete Task state", "content_type": 23, "codename": "delete_taskstate"}}, {"model": "auth.permission", "pk": 89, "fields": {"name": "Can view Task state", "content_type": 23, "codename": "view_taskstate"}}, {"model": "auth.permission", "pk": 90, "fields": {"name": "Can add page log entry", "content_type": 24, "codename": "add_pagelogentry"}}, {"model": "auth.permission", "pk": 91, "fields": {"name": "Can change page log entry", "content_type": 24, "codename": "change_pagelogentry"}}, {"model": "auth.permission", "pk": 92, "fields": {"name": "Can delete page log entry", "content_type": 24, "codename": "delete_pagelogentry"}}, {"model": "auth.permission", "pk": 93, "fields": {"name": "Can view page log entry", "content_type": 24, "codename": "view_pagelogentry"}}, {"model": "auth.permission", "pk": 94, "fields": {"name": "Can add comment", "content_type": 25, "codename": "add_comment"}}, {"model": "auth.permission", "pk": 95, "fields": {"name": "Can change comment", "content_type": 25, "codename": "change_comment"}}, {"model": "auth.permission", "pk": 96, "fields": {"name": "Can delete comment", "content_type": 25, "codename": "delete_comment"}}, {"model": "auth.permission", "pk": 97, "fields": {"name": "Can view comment", "content_type": 25, "codename": "view_comment"}}, {"model": "auth.permission", "pk": 98, "fields": {"name": "Can add comment reply", "content_type": 26, "codename": "add_commentreply"}}, {"model": "auth.permission", "pk": 99, "fields": {"name": "Can change comment reply", "content_type": 26, "codename": "change_commentreply"}}, {"model": "auth.permission", "pk": 100, "fields": {"name": "Can delete comment reply", "content_type": 26, "codename": "delete_commentreply"}}, {"model": "auth.permission", "pk": 101, "fields": {"name": "Can view comment reply", "content_type": 26, "codename": "view_commentreply"}}, {"model": "auth.permission", "pk": 102, "fields": {"name": "Can add page subscription", "content_type": 27, "codename": "add_pagesubscription"}}, {"model": "auth.permission", "pk": 103, "fields": {"name": "Can change page subscription", "content_type": 27, "codename": "change_pagesubscription"}}, {"model": "auth.permission", "pk": 104, "fields": {"name": "Can delete page subscription", "content_type": 27, "codename": "delete_pagesubscription"}}, {"model": "auth.permission", "pk": 105, "fields": {"name": "Can view page subscription", "content_type": 27, "codename": "view_pagesubscription"}}, {"model": "auth.permission", "pk": 106, "fields": {"name": "Can add query", "content_type": 28, "codename": "add_query"}}, {"model": "auth.permission", "pk": 107, "fields": {"name": "Can change query", "content_type": 28, "codename": "change_query"}}, {"model": "auth.permission", "pk": 108, "fields": {"name": "Can delete query", "content_type": 28, "codename": "delete_query"}}, {"model": "auth.permission", "pk": 109, "fields": {"name": "Can view query", "content_type": 28, "codename": "view_query"}}, {"model": "auth.permission", "pk": 110, "fields": {"name": "Can add Query Daily Hits", "content_type": 29, "codename": "add_querydailyhits"}}, {"model": "auth.permission", "pk": 111, "fields": {"name": "Can change Query Daily Hits", "content_type": 29, "codename": "change_querydailyhits"}}, {"model": "auth.permission", "pk": 112, "fields": {"name": "Can delete Query Daily Hits", "content_type": 29, "codename": "delete_querydailyhits"}}, {"model": "auth.permission", "pk": 113, "fields": {"name": "Can view Query Daily Hits", "content_type": 29, "codename": "view_querydailyhits"}}, {"model": "auth.permission", "pk": 114, "fields": {"name": "Can add search promotion", "content_type": 30, "codename": "add_searchpromotion"}}, {"model": "auth.permission", "pk": 115, "fields": {"name": "Can change search promotion", "content_type": 30, "codename": "change_searchpromotion"}}, {"model": "auth.permission", "pk": 116, "fields": {"name": "Can delete search promotion", "content_type": 30, "codename": "delete_searchpromotion"}}, {"model": "auth.permission", "pk": 117, "fields": {"name": "Can view search promotion", "content_type": 30, "codename": "view_searchpromotion"}}, {"model": "auth.permission", "pk": 118, "fields": {"name": "Can add document", "content_type": 31, "codename": "add_document"}}, {"model": "auth.permission", "pk": 119, "fields": {"name": "Can change document", "content_type": 31, "codename": "change_document"}}, {"model": "auth.permission", "pk": 120, "fields": {"name": "Can delete document", "content_type": 31, "codename": "delete_document"}}, {"model": "auth.permission", "pk": 121, "fields": {"name": "Can choose document", "content_type": 31, "codename": "choose_document"}}, {"model": "auth.permission", "pk": 122, "fields": {"name": "Can add Home Page", "content_type": 3, "codename": "add_homepage"}}, {"model": "auth.permission", "pk": 123, "fields": {"name": "Can change Home Page", "content_type": 3, "codename": "change_homepage"}}, {"model": "auth.permission", "pk": 124, "fields": {"name": "Can delete Home Page", "content_type": 3, "codename": "delete_homepage"}}, {"model": "auth.permission", "pk": 125, "fields": {"name": "Can view Home Page", "content_type": 3, "codename": "view_homepage"}}, {"model": "auth.permission", "pk": 126, "fields": {"name": "Can add home page carousel images", "content_type": 32, "codename": "add_homepagecarouselimages"}}, {"model": "auth.permission", "pk": 127, "fields": {"name": "Can change home page carousel images", "content_type": 32, "codename": "change_homepagecarouselimages"}}, {"model": "auth.permission", "pk": 128, "fields": {"name": "Can delete home page carousel images", "content_type": 32, "codename": "delete_homepagecarouselimages"}}, {"model": "auth.permission", "pk": 129, "fields": {"name": "Can view home page carousel images", "content_type": 32, "codename": "view_homepagecarouselimages"}}, {"model": "auth.permission", "pk": 130, "fields": {"name": "Can add curated topic index page", "content_type": 33, "codename": "add_curatedtopicindexpage"}}, {"model": "auth.permission", "pk": 131, "fields": {"name": "Can change curated topic index page", "content_type": 33, "codename": "change_curatedtopicindexpage"}}, {"model": "auth.permission", "pk": 132, "fields": {"name": "Can delete curated topic index page", "content_type": 33, "codename": "delete_curatedtopicindexpage"}}, {"model": "auth.permission", "pk": 133, "fields": {"name": "Can view curated topic index page", "content_type": 33, "codename": "view_curatedtopicindexpage"}}, {"model": "auth.permission", "pk": 134, "fields": {"name": "Can add exhibit index page", "content_type": 34, "codename": "add_exhibitindexpage"}}, {"model": "auth.permission", "pk": 135, "fields": {"name": "Can change exhibit index page", "content_type": 34, "codename": "change_exhibitindexpage"}}, {"model": "auth.permission", "pk": 136, "fields": {"name": "Can delete exhibit index page", "content_type": 34, "codename": "delete_exhibitindexpage"}}, {"model": "auth.permission", "pk": 137, "fields": {"name": "Can view exhibit index page", "content_type": 34, "codename": "view_exhibitindexpage"}}, {"model": "auth.permission", "pk": 138, "fields": {"name": "Can add exhibit page", "content_type": 35, "codename": "add_exhibitpage"}}, {"model": "auth.permission", "pk": 139, "fields": {"name": "Can change exhibit page", "content_type": 35, "codename": "change_exhibitpage"}}, {"model": "auth.permission", "pk": 140, "fields": {"name": "Can delete exhibit page", "content_type": 35, "codename": "delete_exhibitpage"}}, {"model": "auth.permission", "pk": 141, "fields": {"name": "Can view exhibit page", "content_type": 35, "codename": "view_exhibitpage"}}, {"model": "auth.permission", "pk": 142, "fields": {"name": "Can add portal home page", "content_type": 36, "codename": "add_portalhomepage"}}, {"model": "auth.permission", "pk": 143, "fields": {"name": "Can change portal home page", "content_type": 36, "codename": "change_portalhomepage"}}, {"model": "auth.permission", "pk": 144, "fields": {"name": "Can delete portal home page", "content_type": 36, "codename": "delete_portalhomepage"}}, {"model": "auth.permission", "pk": 145, "fields": {"name": "Can view portal home page", "content_type": 36, "codename": "view_portalhomepage"}}, {"model": "auth.permission", "pk": 146, "fields": {"name": "Can add exhibit page side bar", "content_type": 37, "codename": "add_exhibitpagesidebar"}}, {"model": "auth.permission", "pk": 147, "fields": {"name": "Can change exhibit page side bar", "content_type": 37, "codename": "change_exhibitpagesidebar"}}, {"model": "auth.permission", "pk": 148, "fields": {"name": "Can delete exhibit page side bar", "content_type": 37, "codename": "delete_exhibitpagesidebar"}}, {"model": "auth.permission", "pk": 149, "fields": {"name": "Can view exhibit page side bar", "content_type": 37, "codename": "view_exhibitpagesidebar"}}, {"model": "auth.permission", "pk": 150, "fields": {"name": "Can add exhibit index side bar", "content_type": 38, "codename": "add_exhibitindexsidebar"}}, {"model": "auth.permission", "pk": 151, "fields": {"name": "Can change exhibit index side bar", "content_type": 38, "codename": "change_exhibitindexsidebar"}}, {"model": "auth.permission", "pk": 152, "fields": {"name": "Can delete exhibit index side bar", "content_type": 38, "codename": "delete_exhibitindexsidebar"}}, {"model": "auth.permission", "pk": 153, "fields": {"name": "Can view exhibit index side bar", "content_type": 38, "codename": "view_exhibitindexsidebar"}}, {"model": "auth.permission", "pk": 154, "fields": {"name": "Can add curated topic page", "content_type": 39, "codename": "add_curatedtopicpage"}}, {"model": "auth.permission", "pk": 155, "fields": {"name": "Can change curated topic page", "content_type": 39, "codename": "change_curatedtopicpage"}}, {"model": "auth.permission", "pk": 156, "fields": {"name": "Can delete curated topic page", "content_type": 39, "codename": "delete_curatedtopicpage"}}, {"model": "auth.permission", "pk": 157, "fields": {"name": "Can view curated topic page", "content_type": 39, "codename": "view_curatedtopicpage"}}, {"model": "auth.permission", "pk": 158, "fields": {"name": "Can add curated topic index side bar", "content_type": 40, "codename": "add_curatedtopicindexsidebar"}}, {"model": "auth.permission", "pk": 159, "fields": {"name": "Can change curated topic index side bar", "content_type": 40, "codename": "change_curatedtopicindexsidebar"}}, {"model": "auth.permission", "pk": 160, "fields": {"name": "Can delete curated topic index side bar", "content_type": 40, "codename": "delete_curatedtopicindexsidebar"}}, {"model": "auth.permission", "pk": 161, "fields": {"name": "Can view curated topic index side bar", "content_type": 40, "codename": "view_curatedtopicindexsidebar"}}, {"model": "auth.permission", "pk": 162, "fields": {"name": "Can add archive", "content_type": 41, "codename": "add_archive"}}, {"model": "auth.permission", "pk": 163, "fields": {"name": "Can change archive", "content_type": 41, "codename": "change_archive"}}, {"model": "auth.permission", "pk": 164, "fields": {"name": "Can delete archive", "content_type": 41, "codename": "delete_archive"}}, {"model": "auth.permission", "pk": 165, "fields": {"name": "Can view archive", "content_type": 41, "codename": "view_archive"}}, {"model": "auth.permission", "pk": 166, "fields": {"name": "Can add portal standard page", "content_type": 42, "codename": "add_portalstandardpage"}}, {"model": "auth.permission", "pk": 167, "fields": {"name": "Can change portal standard page", "content_type": 42, "codename": "change_portalstandardpage"}}, {"model": "auth.permission", "pk": 168, "fields": {"name": "Can delete portal standard page", "content_type": 42, "codename": "delete_portalstandardpage"}}, {"model": "auth.permission", "pk": 169, "fields": {"name": "Can view portal standard page", "content_type": 42, "codename": "view_portalstandardpage"}}, {"model": "auth.permission", "pk": 170, "fields": {"name": "Can add portal standard side bar", "content_type": 43, "codename": "add_portalstandardsidebar"}}, {"model": "auth.permission", "pk": 171, "fields": {"name": "Can change portal standard side bar", "content_type": 43, "codename": "change_portalstandardsidebar"}}, {"model": "auth.permission", "pk": 172, "fields": {"name": "Can delete portal standard side bar", "content_type": 43, "codename": "delete_portalstandardsidebar"}}, {"model": "auth.permission", "pk": 173, "fields": {"name": "Can view portal standard side bar", "content_type": 43, "codename": "view_portalstandardsidebar"}}, {"model": "auth.permission", "pk": 174, "fields": {"name": "Can add Standard Page", "content_type": 44, "codename": "add_standardpage"}}, {"model": "auth.permission", "pk": 175, "fields": {"name": "Can change Standard Page", "content_type": 44, "codename": "change_standardpage"}}, {"model": "auth.permission", "pk": 176, "fields": {"name": "Can delete Standard Page", "content_type": 44, "codename": "delete_standardpage"}}, {"model": "auth.permission", "pk": 177, "fields": {"name": "Can view Standard Page", "content_type": 44, "codename": "view_standardpage"}}, {"model": "auth.permission", "pk": 178, "fields": {"name": "Can add side bar", "content_type": 45, "codename": "add_sidebar"}}, {"model": "auth.permission", "pk": 179, "fields": {"name": "Can change side bar", "content_type": 45, "codename": "change_sidebar"}}, {"model": "auth.permission", "pk": 180, "fields": {"name": "Can delete side bar", "content_type": 45, "codename": "delete_sidebar"}}, {"model": "auth.permission", "pk": 181, "fields": {"name": "Can view side bar", "content_type": 45, "codename": "view_sidebar"}}, {"model": "auth.permission", "pk": 182, "fields": {"name": "Can add news index page", "content_type": 46, "codename": "add_newsindexpage"}}, {"model": "auth.permission", "pk": 183, "fields": {"name": "Can change news index page", "content_type": 46, "codename": "change_newsindexpage"}}, {"model": "auth.permission", "pk": 184, "fields": {"name": "Can delete news index page", "content_type": 46, "codename": "delete_newsindexpage"}}, {"model": "auth.permission", "pk": 185, "fields": {"name": "Can view news index page", "content_type": 46, "codename": "view_newsindexpage"}}, {"model": "auth.permission", "pk": 186, "fields": {"name": "Can add News Story", "content_type": 47, "codename": "add_newsstorypage"}}, {"model": "auth.permission", "pk": 187, "fields": {"name": "Can change News Story", "content_type": 47, "codename": "change_newsstorypage"}}, {"model": "auth.permission", "pk": 188, "fields": {"name": "Can delete News Story", "content_type": 47, "codename": "delete_newsstorypage"}}, {"model": "auth.permission", "pk": 189, "fields": {"name": "Can view News Story", "content_type": 47, "codename": "view_newsstorypage"}}, {"model": "auth.permission", "pk": 190, "fields": {"name": "Can add news side bar", "content_type": 48, "codename": "add_newssidebar"}}, {"model": "auth.permission", "pk": 191, "fields": {"name": "Can change news side bar", "content_type": 48, "codename": "change_newssidebar"}}, {"model": "auth.permission", "pk": 192, "fields": {"name": "Can delete news side bar", "content_type": 48, "codename": "delete_newssidebar"}}, {"model": "auth.permission", "pk": 193, "fields": {"name": "Can view news side bar", "content_type": 48, "codename": "view_newssidebar"}}, {"model": "auth.permission", "pk": 194, "fields": {"name": "Can add Newsletter Form", "content_type": 49, "codename": "add_newslettersignuppage"}}, {"model": "auth.permission", "pk": 195, "fields": {"name": "Can change Newsletter Form", "content_type": 49, "codename": "change_newslettersignuppage"}}, {"model": "auth.permission", "pk": 196, "fields": {"name": "Can delete Newsletter Form", "content_type": 49, "codename": "delete_newslettersignuppage"}}, {"model": "auth.permission", "pk": 197, "fields": {"name": "Can view Newsletter Form", "content_type": 49, "codename": "view_newslettersignuppage"}}, {"model": "auth.permission", "pk": 198, "fields": {"name": "Can add footer settings", "content_type": 50, "codename": "add_footersettings"}}, {"model": "auth.permission", "pk": 199, "fields": {"name": "Can change footer settings", "content_type": 50, "codename": "change_footersettings"}}, {"model": "auth.permission", "pk": 200, "fields": {"name": "Can delete footer settings", "content_type": 50, "codename": "delete_footersettings"}}, {"model": "auth.permission", "pk": 201, "fields": {"name": "Can view footer settings", "content_type": 50, "codename": "view_footersettings"}}, {"model": "auth.permission", "pk": 202, "fields": {"name": "Can add alert banner", "content_type": 51, "codename": "add_alertbanner"}}, {"model": "auth.permission", "pk": 203, "fields": {"name": "Can change alert banner", "content_type": 51, "codename": "change_alertbanner"}}, {"model": "auth.permission", "pk": 204, "fields": {"name": "Can delete alert banner", "content_type": 51, "codename": "delete_alertbanner"}}, {"model": "auth.permission", "pk": 205, "fields": {"name": "Can view alert banner", "content_type": 51, "codename": "view_alertbanner"}}, {"model": "auth.permission", "pk": 206, "fields": {"name": "Can add Member Collection Index Page", "content_type": 52, "codename": "add_membcollectionindexpage"}}, {"model": "auth.permission", "pk": 207, "fields": {"name": "Can change Member Collection Index Page", "content_type": 52, "codename": "change_membcollectionindexpage"}}, {"model": "auth.permission", "pk": 208, "fields": {"name": "Can delete Member Collection Index Page", "content_type": 52, "codename": "delete_membcollectionindexpage"}}, {"model": "auth.permission", "pk": 209, "fields": {"name": "Can view Member Collection Index Page", "content_type": 52, "codename": "view_membcollectionindexpage"}}, {"model": "auth.permission", "pk": 210, "fields": {"name": "Can add side bar", "content_type": 53, "codename": "add_sidebar"}}, {"model": "auth.permission", "pk": 211, "fields": {"name": "Can change side bar", "content_type": 53, "codename": "change_sidebar"}}, {"model": "auth.permission", "pk": 212, "fields": {"name": "Can delete side bar", "content_type": 53, "codename": "delete_sidebar"}}, {"model": "auth.permission", "pk": 213, "fields": {"name": "Can view side bar", "content_type": 53, "codename": "view_sidebar"}}, {"model": "auth.permission", "pk": 214, "fields": {"name": "Can add form submission", "content_type": 54, "codename": "add_formsubmission"}}, {"model": "auth.permission", "pk": 215, "fields": {"name": "Can change form submission", "content_type": 54, "codename": "change_formsubmission"}}, {"model": "auth.permission", "pk": 216, "fields": {"name": "Can delete form submission", "content_type": 54, "codename": "delete_formsubmission"}}, {"model": "auth.permission", "pk": 217, "fields": {"name": "Can view form submission", "content_type": 54, "codename": "view_formsubmission"}}, {"model": "auth.permission", "pk": 218, "fields": {"name": "Can add redirect", "content_type": 55, "codename": "add_redirect"}}, {"model": "auth.permission", "pk": 219, "fields": {"name": "Can change redirect", "content_type": 55, "codename": "change_redirect"}}, {"model": "auth.permission", "pk": 220, "fields": {"name": "Can delete redirect", "content_type": 55, "codename": "delete_redirect"}}, {"model": "auth.permission", "pk": 221, "fields": {"name": "Can view redirect", "content_type": 55, "codename": "view_redirect"}}, {"model": "auth.permission", "pk": 222, "fields": {"name": "Can add embed", "content_type": 56, "codename": "add_embed"}}, {"model": "auth.permission", "pk": 223, "fields": {"name": "Can change embed", "content_type": 56, "codename": "change_embed"}}, {"model": "auth.permission", "pk": 224, "fields": {"name": "Can delete embed", "content_type": 56, "codename": "delete_embed"}}, {"model": "auth.permission", "pk": 225, "fields": {"name": "Can view embed", "content_type": 56, "codename": "view_embed"}}, {"model": "auth.permission", "pk": 226, "fields": {"name": "Can add user profile", "content_type": 57, "codename": "add_userprofile"}}, {"model": "auth.permission", "pk": 227, "fields": {"name": "Can change user profile", "content_type": 57, "codename": "change_userprofile"}}, {"model": "auth.permission", "pk": 228, "fields": {"name": "Can delete user profile", "content_type": 57, "codename": "delete_userprofile"}}, {"model": "auth.permission", "pk": 229, "fields": {"name": "Can view user profile", "content_type": 57, "codename": "view_userprofile"}}, {"model": "auth.permission", "pk": 230, "fields": {"name": "Can view document", "content_type": 31, "codename": "view_document"}}, {"model": "auth.permission", "pk": 231, "fields": {"name": "Can view image", "content_type": 2, "codename": "view_image"}}, {"model": "auth.permission", "pk": 232, "fields": {"name": "Can add rendition", "content_type": 58, "codename": "add_rendition"}}, {"model": "auth.permission", "pk": 233, "fields": {"name": "Can change rendition", "content_type": 58, "codename": "change_rendition"}}, {"model": "auth.permission", "pk": 234, "fields": {"name": "Can delete rendition", "content_type": 58, "codename": "delete_rendition"}}, {"model": "auth.permission", "pk": 235, "fields": {"name": "Can view rendition", "content_type": 58, "codename": "view_rendition"}}, {"model": "auth.permission", "pk": 236, "fields": {"name": "Can add index entry", "content_type": 59, "codename": "add_indexentry"}}, {"model": "auth.permission", "pk": 237, "fields": {"name": "Can change index entry", "content_type": 59, "codename": "change_indexentry"}}, {"model": "auth.permission", "pk": 238, "fields": {"name": "Can delete index entry", "content_type": 59, "codename": "delete_indexentry"}}, {"model": "auth.permission", "pk": 239, "fields": {"name": "Can view index entry", "content_type": 59, "codename": "view_indexentry"}}, {"model": "auth.permission", "pk": 240, "fields": {"name": "Can add tag", "content_type": 60, "codename": "add_tag"}}, {"model": "auth.permission", "pk": 241, "fields": {"name": "Can change tag", "content_type": 60, "codename": "change_tag"}}, {"model": "auth.permission", "pk": 242, "fields": {"name": "Can delete tag", "content_type": 60, "codename": "delete_tag"}}, {"model": "auth.permission", "pk": 243, "fields": {"name": "Can view tag", "content_type": 60, "codename": "view_tag"}}, {"model": "auth.permission", "pk": 244, "fields": {"name": "Can add tagged item", "content_type": 61, "codename": "add_taggeditem"}}, {"model": "auth.permission", "pk": 245, "fields": {"name": "Can change tagged item", "content_type": 61, "codename": "change_taggeditem"}}, {"model": "auth.permission", "pk": 246, "fields": {"name": "Can delete tagged item", "content_type": 61, "codename": "delete_taggeditem"}}, {"model": "auth.permission", "pk": 247, "fields": {"name": "Can view tagged item", "content_type": 61, "codename": "view_taggeditem"}}, {"model": "auth.permission", "pk": 248, "fields": {"name": "Can add log entry", "content_type": 62, "codename": "add_logentry"}}, {"model": "auth.permission", "pk": 249, "fields": {"name": "Can change log entry", "content_type": 62, "codename": "change_logentry"}}, {"model": "auth.permission", "pk": 250, "fields": {"name": "Can delete log entry", "content_type": 62, "codename": "delete_logentry"}}, {"model": "auth.permission", "pk": 251, "fields": {"name": "Can view log entry", "content_type": 62, "codename": "view_logentry"}}, {"model": "auth.permission", "pk": 252, "fields": {"name": "Can add permission", "content_type": 63, "codename": "add_permission"}}, {"model": "auth.permission", "pk": 253, "fields": {"name": "Can change permission", "content_type": 63, "codename": "change_permission"}}, {"model": "auth.permission", "pk": 254, "fields": {"name": "Can delete permission", "content_type": 63, "codename": "delete_permission"}}, {"model": "auth.permission", "pk": 255, "fields": {"name": "Can view permission", "content_type": 63, "codename": "view_permission"}}, {"model": "auth.permission", "pk": 256, "fields": {"name": "Can add group", "content_type": 64, "codename": "add_group"}}, {"model": "auth.permission", "pk": 257, "fields": {"name": "Can change group", "content_type": 64, "codename": "change_group"}}, {"model": "auth.permission", "pk": 258, "fields": {"name": "Can delete group", "content_type": 64, "codename": "delete_group"}}, {"model": "auth.permission", "pk": 259, "fields": {"name": "Can view group", "content_type": 64, "codename": "view_group"}}, {"model": "auth.permission", "pk": 260, "fields": {"name": "Can add user", "content_type": 65, "codename": "add_user"}}, {"model": "auth.permission", "pk": 261, "fields": {"name": "Can change user", "content_type": 65, "codename": "change_user"}}, {"model": "auth.permission", "pk": 262, "fields": {"name": "Can delete user", "content_type": 65, "codename": "delete_user"}}, {"model": "auth.permission", "pk": 263, "fields": {"name": "Can view user", "content_type": 65, "codename": "view_user"}}, {"model": "auth.permission", "pk": 264, "fields": {"name": "Can add content type", "content_type": 66, "codename": "add_contenttype"}}, {"model": "auth.permission", "pk": 265, "fields": {"name": "Can change content type", "content_type": 66, "codename": "change_contenttype"}}, {"model": "auth.permission", "pk": 266, "fields": {"name": "Can delete content type", "content_type": 66, "codename": "delete_contenttype"}}, {"model": "auth.permission", "pk": 267, "fields": {"name": "Can view content type", "content_type": 66, "codename": "view_contenttype"}}, {"model": "auth.permission", "pk": 268, "fields": {"name": "Can add session", "content_type": 67, "codename": "add_session"}}, {"model": "auth.permission", "pk": 269, "fields": {"name": "Can change session", "content_type": 67, "codename": "change_session"}}, {"model": "auth.permission", "pk": 270, "fields": {"name": "Can delete session", "content_type": 67, "codename": "delete_session"}}, {"model": "auth.permission", "pk": 271, "fields": {"name": "Can view session", "content_type": 67, "codename": "view_session"}}, {"model": "auth.group", "pk": 1, "fields": {"name": "Moderators", "permissions": [5, 118, 119, 121, 120, 1, 2, 3]}}, {"model": "auth.group", "pk": 2, "fields": {"name": "Editors", "permissions": [5, 118, 119, 121, 120, 1, 2, 3]}}, {"model": "auth.user", "pk": 1, "fields": {"password": "pbkdf2_sha256$720000$6g3f5lMdEmD7TScyaMAxf6$labjhCjpfxeQwDoi/119mSUPUaxJSkchCeDyLTh26JY=", "last_login": "2024-08-01T14:39:37.774Z", "is_superuser": true, "username": "darthvader", "first_name": "", "last_name": "", "email": "vader@deathstar.com", "is_staff": true, "is_active": true, "date_joined": "2024-08-01T14:19:09.878Z", "groups": [], "user_permissions": []}}, {"model": "contenttypes.contenttype", "pk": 1, "fields": {"app_label": "wagtailcore", "model": "page"}}, {"model": "contenttypes.contenttype", "pk": 2, "fields": {"app_label": "wagtailimages", "model": "image"}}, {"model": "contenttypes.contenttype", "pk": 3, "fields": {"app_label": "home", "model": "homepage"}}, {"model": "contenttypes.contenttype", "pk": 4, "fields": {"app_label": "wagtailcore", "model": "groupapprovaltask"}}, {"model": "contenttypes.contenttype", "pk": 5, "fields": {"app_label": "wagtailadmin", "model": "admin"}}, {"model": "contenttypes.contenttype", "pk": 6, "fields": {"app_label": "wagtailcore", "model": "locale"}}, {"model": "contenttypes.contenttype", "pk": 7, "fields": {"app_label": "wagtailcore", "model": "site"}}, {"model": "contenttypes.contenttype", "pk": 8, "fields": {"app_label": "wagtailcore", "model": "modellogentry"}}, {"model": "contenttypes.contenttype", "pk": 9, "fields": {"app_label": "wagtailcore", "model": "collectionviewrestriction"}}, {"model": "contenttypes.contenttype", "pk": 10, "fields": {"app_label": "wagtailcore", "model": "collection"}}, {"model": "contenttypes.contenttype", "pk": 11, "fields": {"app_label": "wagtailcore", "model": "groupcollectionpermission"}}, {"model": "contenttypes.contenttype", "pk": 12, "fields": {"app_label": "wagtailcore", "model": "uploadedfile"}}, {"model": "contenttypes.contenttype", "pk": 13, "fields": {"app_label": "wagtailcore", "model": "referenceindex"}}, {"model": "contenttypes.contenttype", "pk": 14, "fields": {"app_label": "wagtailcore", "model": "revision"}}, {"model": "contenttypes.contenttype", "pk": 15, "fields": {"app_label": "wagtailcore", "model": "grouppagepermission"}}, {"model": "contenttypes.contenttype", "pk": 16, "fields": {"app_label": "wagtailcore", "model": "pageviewrestriction"}}, {"model": "contenttypes.contenttype", "pk": 17, "fields": {"app_label": "wagtailcore", "model": "workflowpage"}}, {"model": "contenttypes.contenttype", "pk": 18, "fields": {"app_label": "wagtailcore", "model": "workflowcontenttype"}}, {"model": "contenttypes.contenttype", "pk": 19, "fields": {"app_label": "wagtailcore", "model": "workflowtask"}}, {"model": "contenttypes.contenttype", "pk": 20, "fields": {"app_label": "wagtailcore", "model": "task"}}, {"model": "contenttypes.contenttype", "pk": 21, "fields": {"app_label": "wagtailcore", "model": "workflow"}}, {"model": "contenttypes.contenttype", "pk": 22, "fields": {"app_label": "wagtailcore", "model": "workflowstate"}}, {"model": "contenttypes.contenttype", "pk": 23, "fields": {"app_label": "wagtailcore", "model": "taskstate"}}, {"model": "contenttypes.contenttype", "pk": 24, "fields": {"app_label": "wagtailcore", "model": "pagelogentry"}}, {"model": "contenttypes.contenttype", "pk": 25, "fields": {"app_label": "wagtailcore", "model": "comment"}}, {"model": "contenttypes.contenttype", "pk": 26, "fields": {"app_label": "wagtailcore", "model": "commentreply"}}, {"model": "contenttypes.contenttype", "pk": 27, "fields": {"app_label": "wagtailcore", "model": "pagesubscription"}}, {"model": "contenttypes.contenttype", "pk": 28, "fields": {"app_label": "wagtailcore", "model": "query"}}, {"model": "contenttypes.contenttype", "pk": 29, "fields": {"app_label": "wagtailcore", "model": "querydailyhits"}}, {"model": "contenttypes.contenttype", "pk": 30, "fields": {"app_label": "wagtailcore", "model": "searchpromotion"}}, {"model": "contenttypes.contenttype", "pk": 31, "fields": {"app_label": "wagtaildocs", "model": "document"}}, {"model": "contenttypes.contenttype", "pk": 32, "fields": {"app_label": "home", "model": "homepagecarouselimages"}}, {"model": "contenttypes.contenttype", "pk": 33, "fields": {"app_label": "portal", "model": "curatedtopicindexpage"}}, {"model": "contenttypes.contenttype", "pk": 34, "fields": {"app_label": "portal", "model": "exhibitindexpage"}}, {"model": "contenttypes.contenttype", "pk": 35, "fields": {"app_label": "portal", "model": "exhibitpage"}}, {"model": "contenttypes.contenttype", "pk": 36, "fields": {"app_label": "portal", "model": "portalhomepage"}}, {"model": "contenttypes.contenttype", "pk": 37, "fields": {"app_label": "portal", "model": "exhibitpagesidebar"}}, {"model": "contenttypes.contenttype", "pk": 38, "fields": {"app_label": "portal", "model": "exhibitindexsidebar"}}, {"model": "contenttypes.contenttype", "pk": 39, "fields": {"app_label": "portal", "model": "curatedtopicpage"}}, {"model": "contenttypes.contenttype", "pk": 40, "fields": {"app_label": "portal", "model": "curatedtopicindexsidebar"}}, {"model": "contenttypes.contenttype", "pk": 41, "fields": {"app_label": "portal", "model": "archive"}}, {"model": "contenttypes.contenttype", "pk": 42, "fields": {"app_label": "portal", "model": "portalstandardpage"}}, {"model": "contenttypes.contenttype", "pk": 43, "fields": {"app_label": "portal", "model": "portalstandardsidebar"}}, {"model": "contenttypes.contenttype", "pk": 44, "fields": {"app_label": "standard", "model": "standardpage"}}, {"model": "contenttypes.contenttype", "pk": 45, "fields": {"app_label": "standard", "model": "sidebar"}}, {"model": "contenttypes.contenttype", "pk": 46, "fields": {"app_label": "news", "model": "newsindexpage"}}, {"model": "contenttypes.contenttype", "pk": 47, "fields": {"app_label": "news", "model": "newsstorypage"}}, {"model": "contenttypes.contenttype", "pk": 48, "fields": {"app_label": "news", "model": "newssidebar"}}, {"model": "contenttypes.contenttype", "pk": 49, "fields": {"app_label": "news", "model": "newslettersignuppage"}}, {"model": "contenttypes.contenttype", "pk": 50, "fields": {"app_label": "site_settings", "model": "footersettings"}}, {"model": "contenttypes.contenttype", "pk": 51, "fields": {"app_label": "site_settings", "model": "alertbanner"}}, {"model": "contenttypes.contenttype", "pk": 52, "fields": {"app_label": "memb_collections", "model": "membcollectionindexpage"}}, {"model": "contenttypes.contenttype", "pk": 53, "fields": {"app_label": "memb_collections", "model": "sidebar"}}, {"model": "contenttypes.contenttype", "pk": 54, "fields": {"app_label": "wagtailforms", "model": "formsubmission"}}, {"model": "contenttypes.contenttype", "pk": 55, "fields": {"app_label": "wagtailredirects", "model": "redirect"}}, {"model": "contenttypes.contenttype", "pk": 56, "fields": {"app_label": "wagtailembeds", "model": "embed"}}, {"model": "contenttypes.contenttype", "pk": 57, "fields": {"app_label": "wagtailusers", "model": "userprofile"}}, {"model": "contenttypes.contenttype", "pk": 58, "fields": {"app_label": "wagtailimages", "model": "rendition"}}, {"model": "contenttypes.contenttype", "pk": 59, "fields": {"app_label": "wagtailsearch", "model": "indexentry"}}, {"model": "contenttypes.contenttype", "pk": 60, "fields": {"app_label": "taggit", "model": "tag"}}, {"model": "contenttypes.contenttype", "pk": 61, "fields": {"app_label": "taggit", "model": "taggeditem"}}, {"model": "contenttypes.contenttype", "pk": 62, "fields": {"app_label": "admin", "model": "logentry"}}, {"model": "contenttypes.contenttype", "pk": 63, "fields": {"app_label": "auth", "model": "permission"}}, {"model": "contenttypes.contenttype", "pk": 64, "fields": {"app_label": "auth", "model": "group"}}, {"model": "contenttypes.contenttype", "pk": 65, "fields": {"app_label": "auth", "model": "user"}}, {"model": "contenttypes.contenttype", "pk": 66, "fields": {"app_label": "contenttypes", "model": "contenttype"}}, {"model": "contenttypes.contenttype", "pk": 67, "fields": {"app_label": "sessions", "model": "session"}}, {"model": "sessions.session", "pk": "2h8kibtn0c1uwuusgjoe8uo9ky9q87gf", "fields": {"session_data": ".eJxVjEEOwiAQRe_C2hBoaaFduvcMZBhmLGrAlDbRGO-uTbrQ7X_vv5fwsC6TXyvNPkUxCi0Ov1sAvFLeQLxAPheJJS9zCnJT5E6rPJVIt-Pu_gUmqNP3rRqrQ2BiVh06BgdoWzAKe-N0MwzRAEHsWVlrnbGIjaPeta1mBuCu26KVak0le3rc0_wUo3p_AK5SP6o:1sZWxt:uw5ULPAsO7NmQ0InIfU3LDzba7UR9rAjm1oGjpVvmQI", "expire_date": "2024-08-15T14:39:37.778Z"}}, {"model": "sessions.session", "pk": "6ou4cdunw6echf3oj3256u516mi02sot", "fields": {"session_data": ".eJxVjEEOwiAQRe_C2hBoaaFduvcMZBhmLGrAlDbRGO-uTbrQ7X_vv5fwsC6TXyvNPkUxCi0Ov1sAvFLeQLxAPheJJS9zCnJT5E6rPJVIt-Pu_gUmqNP3rRqrQ2BiVh06BgdoWzAKe-N0MwzRAEHsWVlrnbGIjaPeta1mBuCu26KVak0le3rc0_wUo3p_AK5SP6o:1sZWeW:ckehJ1Cs8bJnYMRj6l_jsGj4BKZsmRiM72gQeJPFOuI", "expire_date": "2024-08-15T14:19:36.870Z"}}] \ No newline at end of file diff --git a/home/migrations/0003_auto_20191018_2051.py b/home/migrations/0003_auto_20191018_2051.py index 41ed38a..fc80bf1 100644 --- a/home/migrations/0003_auto_20191018_2051.py +++ b/home/migrations/0003_auto_20191018_2051.py @@ -4,7 +4,7 @@ import django.db.models.deletion import modelcluster.fields import streams.blocks -import wagtail.core.fields +import wagtail.fields class Migration(migrations.Migration): @@ -23,7 +23,7 @@ class Migration(migrations.Migration): migrations.AddField( model_name='homepage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock())], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock())], blank=True, null=True), ), migrations.CreateModel( name='HomePageCarouselImages', @@ -31,7 +31,7 @@ class Migration(migrations.Migration): ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('sort_order', models.IntegerField(blank=True, editable=False, null=True)), ('carousel_title', models.CharField(blank=True, max_length=100, null=True)), - ('carousel_text', wagtail.core.fields.RichTextField(blank=True, null=True)), + ('carousel_text', wagtail.fields.RichTextField(blank=True, null=True)), ('carousel_button', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailcore.Page')), ('carousel_image', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailimages.Image')), ('page', modelcluster.fields.ParentalKey(on_delete=django.db.models.deletion.CASCADE, related_name='carousel_images', to='home.HomePage')), diff --git a/home/migrations/0005_auto_20191022_1953.py b/home/migrations/0005_auto_20191022_1953.py index ee5713a..e5f2b10 100644 --- a/home/migrations/0005_auto_20191022_1953.py +++ b/home/migrations/0005_auto_20191022_1953.py @@ -2,8 +2,8 @@ from django.db import migrations import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields class Migration(migrations.Migration): @@ -21,6 +21,6 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='homepage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('page_callout', wagtail.core.blocks.StructBlock([('title', wagtail.core.blocks.CharBlock(help_text='Title for section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], required=False)), ('button_link', wagtail.core.blocks.PageChooserBlock(required=False)), ('button_label', wagtail.core.blocks.CharBlock(required=False))]))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('page_callout', wagtail.blocks.StructBlock([('title', wagtail.blocks.CharBlock(help_text='Title for section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], required=False)), ('button_link', wagtail.blocks.PageChooserBlock(required=False)), ('button_label', wagtail.blocks.CharBlock(required=False))]))], blank=True, null=True), ), ] diff --git a/home/migrations/0006_auto_20191023_2022.py b/home/migrations/0006_auto_20191023_2022.py index 926b761..915cf22 100644 --- a/home/migrations/0006_auto_20191023_2022.py +++ b/home/migrations/0006_auto_20191023_2022.py @@ -2,8 +2,8 @@ from django.db import migrations import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields class Migration(migrations.Migration): @@ -16,6 +16,6 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='homepage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('page_callout', wagtail.core.blocks.StructBlock([('callout_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], label='Callout Text', required=False)), ('button_link', wagtail.core.blocks.PageChooserBlock(help_text='Where you want the button to go', required=False)), ('button_label', wagtail.core.blocks.CharBlock(help_text='Text that shows up in button', required=False))])), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))])), ('new_row', wagtail.core.blocks.StructBlock([]))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('page_callout', wagtail.blocks.StructBlock([('callout_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], label='Callout Text', required=False)), ('button_link', wagtail.blocks.PageChooserBlock(help_text='Where you want the button to go', required=False)), ('button_label', wagtail.blocks.CharBlock(help_text='Text that shows up in button', required=False))])), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))])), ('new_row', wagtail.blocks.StructBlock([]))], blank=True, null=True), ), ] diff --git a/home/models.py b/home/models.py index d6f1be9..fd9edab 100644 --- a/home/models.py +++ b/home/models.py @@ -2,14 +2,14 @@ from modelcluster.fields import ParentalKey -from wagtail.admin.edit_handlers import ( +from wagtail.admin.panels import ( FieldPanel, InlinePanel, MultiFieldPanel, PageChooserPanel, ) -from wagtail.core.fields import RichTextField, StreamField -from wagtail.core.models import Page, Orderable +from wagtail.fields import RichTextField, StreamField +from wagtail.models import Page, Orderable from streams import blocks from news.models import NewsStoryPage @@ -67,7 +67,6 @@ class HomePage(Page): ], null=True, blank=True, - use_json_field=True, ) content_panels = Page.content_panels + [ diff --git a/memb_collections/migrations/0001_initial.py b/memb_collections/migrations/0001_initial.py index efdd742..67dd75d 100644 --- a/memb_collections/migrations/0001_initial.py +++ b/memb_collections/migrations/0001_initial.py @@ -4,8 +4,8 @@ import django.db.models.deletion import modelcluster.fields import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -22,7 +22,7 @@ class Migration(migrations.Migration): name='MembCollectionIndexPage', fields=[ ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.Page')), - ('body', wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))])), ('new_row', wagtail.core.blocks.StructBlock([])), ('memb_coll_search_block', wagtail.core.blocks.StructBlock([]))], blank=True, null=True)), + ('body', wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))])), ('new_row', wagtail.blocks.StructBlock([])), ('memb_coll_search_block', wagtail.blocks.StructBlock([]))], blank=True, null=True)), ], options={ 'verbose_name': 'Member Collection Index Page', @@ -36,7 +36,7 @@ class Migration(migrations.Migration): ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('sort_order', models.IntegerField(blank=True, editable=False, null=True)), ('sidebar_title', models.CharField(blank=True, max_length=100, null=True)), - ('sidebar_text', wagtail.core.fields.RichTextField(blank=True, null=True)), + ('sidebar_text', wagtail.fields.RichTextField(blank=True, null=True)), ('page', modelcluster.fields.ParentalKey(on_delete=django.db.models.deletion.CASCADE, related_name='sidebar', to='memb_collections.MembCollectionIndexPage')), ], options={ diff --git a/memb_collections/migrations/0002_auto_20191204_1356.py b/memb_collections/migrations/0002_auto_20191204_1356.py index 8eec4b8..507046f 100644 --- a/memb_collections/migrations/0002_auto_20191204_1356.py +++ b/memb_collections/migrations/0002_auto_20191204_1356.py @@ -2,8 +2,8 @@ from django.db import migrations import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -17,6 +17,6 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='membcollectionindexpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))])), ('new_row', wagtail.core.blocks.StructBlock([])), ('memb_coll_search_block', wagtail.core.blocks.StructBlock([('label', wagtail.core.blocks.CharBlock(help_text='Optional: Label placed above search box', required=False)), ('search_help_text', wagtail.core.blocks.CharBlock(help_text='Optional: Placed below search box', required=False))]))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))])), ('new_row', wagtail.blocks.StructBlock([])), ('memb_coll_search_block', wagtail.blocks.StructBlock([('label', wagtail.blocks.CharBlock(help_text='Optional: Label placed above search box', required=False)), ('search_help_text', wagtail.blocks.CharBlock(help_text='Optional: Placed below search box', required=False))]))], blank=True, null=True), ), ] diff --git a/memb_collections/models.py b/memb_collections/models.py index 603016c..0072d4d 100644 --- a/memb_collections/models.py +++ b/memb_collections/models.py @@ -4,13 +4,13 @@ from modelcluster.fields import ParentalKey -from wagtail.admin.edit_handlers import ( +from wagtail.admin.panels import ( FieldPanel, InlinePanel, MultiFieldPanel, ) -from wagtail.core.fields import RichTextField, StreamField -from wagtail.core.models import Page, Orderable +from wagtail.fields import RichTextField, StreamField +from wagtail.models import Page, Orderable from wagtail.search import index from streams import blocks @@ -56,7 +56,6 @@ class MembCollectionIndexPage(Page): ], null=True, blank=True, - use_json_field=True, ) content_panels = Page.content_panels + [ diff --git a/news/migrations/0001_initial.py b/news/migrations/0001_initial.py index a93568f..e04fb82 100644 --- a/news/migrations/0001_initial.py +++ b/news/migrations/0001_initial.py @@ -3,8 +3,8 @@ from django.db import migrations, models import django.db.models.deletion import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -33,7 +33,7 @@ class Migration(migrations.Migration): fields=[ ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.Page')), ('excerpt', models.CharField(blank=True, max_length=300, null=True)), - ('body', wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('page_callout', wagtail.core.blocks.StructBlock([('callout_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], label='Callout Text', required=False)), ('button_link', wagtail.core.blocks.PageChooserBlock(help_text='Where you want the button to go', required=False)), ('button_label', wagtail.core.blocks.CharBlock(help_text='Text that shows up in button', required=False))])), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))])), ('new_row', wagtail.core.blocks.StructBlock([]))], blank=True, null=True)), + ('body', wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('page_callout', wagtail.blocks.StructBlock([('callout_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], label='Callout Text', required=False)), ('button_link', wagtail.blocks.PageChooserBlock(help_text='Where you want the button to go', required=False)), ('button_label', wagtail.blocks.CharBlock(help_text='Text that shows up in button', required=False))])), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))])), ('new_row', wagtail.blocks.StructBlock([]))], blank=True, null=True)), ('lead_image', models.ForeignKey(null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailimages.Image')), ], options={ diff --git a/news/migrations/0005_newssidebar.py b/news/migrations/0005_newssidebar.py index d8328db..5d1285b 100644 --- a/news/migrations/0005_newssidebar.py +++ b/news/migrations/0005_newssidebar.py @@ -3,7 +3,7 @@ from django.db import migrations, models import django.db.models.deletion import modelcluster.fields -import wagtail.core.fields +import wagtail.fields class Migration(migrations.Migration): @@ -19,7 +19,7 @@ class Migration(migrations.Migration): ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('sort_order', models.IntegerField(blank=True, editable=False, null=True)), ('sidebar_title', models.CharField(blank=True, max_length=100, null=True)), - ('sidebar_text', wagtail.core.fields.RichTextField(blank=True, null=True)), + ('sidebar_text', wagtail.fields.RichTextField(blank=True, null=True)), ('page', modelcluster.fields.ParentalKey(on_delete=django.db.models.deletion.CASCADE, related_name='news_sidebar', to='news.NewsIndexPage')), ], options={ diff --git a/news/migrations/0006_newslettersignuppage.py b/news/migrations/0006_newslettersignuppage.py index 3348721..a2ec685 100644 --- a/news/migrations/0006_newslettersignuppage.py +++ b/news/migrations/0006_newslettersignuppage.py @@ -3,8 +3,8 @@ from django.db import migrations, models import django.db.models.deletion import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -20,7 +20,7 @@ class Migration(migrations.Migration): name='NewsletterSignupPage', fields=[ ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.Page')), - ('body', wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))])), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))])), ('new_row', wagtail.core.blocks.StructBlock([]))], blank=True, null=True)), + ('body', wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))])), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))])), ('new_row', wagtail.blocks.StructBlock([]))], blank=True, null=True)), ], options={ 'verbose_name': 'Newsletter Form', diff --git a/news/migrations/0007_auto_20200820_2135.py b/news/migrations/0007_auto_20200820_2135.py index 8832068..1cc4f73 100644 --- a/news/migrations/0007_auto_20200820_2135.py +++ b/news/migrations/0007_auto_20200820_2135.py @@ -2,8 +2,8 @@ from django.db import migrations import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -17,11 +17,11 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='newslettersignuppage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))])), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))]))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))])), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))]))], blank=True, null=True), ), migrations.AlterField( model_name='newsstorypage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images'))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images'))], blank=True, null=True), ), ] diff --git a/news/migrations/0009_alter_newsstorypage_body.py b/news/migrations/0009_alter_newsstorypage_body.py index 7c175b9..c663d56 100644 --- a/news/migrations/0009_alter_newsstorypage_body.py +++ b/news/migrations/0009_alter_newsstorypage_body.py @@ -2,8 +2,8 @@ from django.db import migrations import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -17,6 +17,6 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='newsstorypage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.core.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images'))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images'))], blank=True, null=True), ), ] diff --git a/news/migrations/0010_alter_newsstorypage_body.py b/news/migrations/0010_alter_newsstorypage_body.py index 84a20f9..328ed64 100644 --- a/news/migrations/0010_alter_newsstorypage_body.py +++ b/news/migrations/0010_alter_newsstorypage_body.py @@ -4,8 +4,8 @@ from django.db import migrations import re import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -19,6 +19,6 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='newsstorypage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.core.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')])), ('anchor', wagtail.core.blocks.CharBlock(help_text='Slug for anchor link', max_length=50, required=False, validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+\\Z'), 'Enter a valid “slug” consisting of letters, numbers, underscores or hyphens.', 'invalid')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images'))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')])), ('anchor', wagtail.blocks.CharBlock(help_text='Slug for anchor link', max_length=50, required=False, validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+\\Z'), 'Enter a valid “slug” consisting of letters, numbers, underscores or hyphens.', 'invalid')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images'))], blank=True, null=True), ), ] diff --git a/news/models.py b/news/models.py index ceb3c87..c434af1 100644 --- a/news/models.py +++ b/news/models.py @@ -7,13 +7,13 @@ from modelcluster.fields import ParentalKey -from wagtail.admin.edit_handlers import ( +from wagtail.admin.panels import ( FieldPanel, InlinePanel, MultiFieldPanel, ) -from wagtail.core.fields import RichTextField, StreamField -from wagtail.core.models import Page, Orderable +from wagtail.fields import RichTextField, StreamField +from wagtail.models import Page, Orderable from wagtail.search import index from streams import blocks @@ -108,7 +108,6 @@ class NewsStoryPage(Page): ], null=True, blank=True, - use_json_field=True, ) story_date = models.DateField( default=timezone.now, @@ -148,7 +147,6 @@ class NewsletterSignupPage(Page): ], null=True, blank=True, - use_json_field=True, ) content_panels = Page.content_panels + [ diff --git a/portal/admin.py b/portal/admin.py index 910a08f..2a9e614 100644 --- a/portal/admin.py +++ b/portal/admin.py @@ -1,15 +1,16 @@ -from wagtail.admin.edit_handlers import FieldPanel -from wagtail.contrib.modeladmin.options import ModelAdmin, modeladmin_register +from wagtail.admin.panels import FieldPanel +from wagtail.snippets.models import register_snippet +from wagtail.snippets.views.snippets import SnippetViewSet from portal.models import Archive -class ArchiveAdmin(ModelAdmin): +class AcrchiveAdminViewSet(SnippetViewSet): """Archive admin.""" model = Archive menu_label = 'Archives' - menu_icon = 'group' + icon = 'group' menu_order = 290 add_to_settings_menu = False exclude_from_explorer = False @@ -43,4 +44,4 @@ class ArchiveAdmin(ModelAdmin): ) -modeladmin_register(ArchiveAdmin) +register_snippet(AcrchiveAdminViewSet) diff --git a/portal/migrations/0001_initial.py b/portal/migrations/0001_initial.py index 16a34c6..646e116 100644 --- a/portal/migrations/0001_initial.py +++ b/portal/migrations/0001_initial.py @@ -4,8 +4,8 @@ import django.db.models.deletion import modelcluster.fields import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -23,7 +23,7 @@ class Migration(migrations.Migration): name='CuratedTopicIndexPage', fields=[ ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.page')), - ('body', wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True)), + ('body', wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True)), ], options={ 'abstract': False, @@ -34,7 +34,7 @@ class Migration(migrations.Migration): name='ExhibitIndexPage', fields=[ ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.page')), - ('body', wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True)), + ('body', wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True)), ], options={ 'abstract': False, @@ -45,7 +45,7 @@ class Migration(migrations.Migration): name='ExhibitPage', fields=[ ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.page')), - ('body', wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True)), + ('body', wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True)), ('image', models.ForeignKey(blank=True, help_text='A small version of this image will display on the portal homepage. It does NOT appera on the ExhibitPage itself.', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailimages.image')), ], options={ @@ -57,8 +57,8 @@ class Migration(migrations.Migration): name='PortalHomePage', fields=[ ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.page')), - ('introduction', wagtail.core.fields.RichTextField(blank=True, null=True)), - ('about_the_bmrc', wagtail.core.fields.RichTextField(blank=True, null=True)), + ('introduction', wagtail.fields.RichTextField(blank=True, null=True)), + ('about_the_bmrc', wagtail.fields.RichTextField(blank=True, null=True)), ('featured_exhibit', models.ForeignKey(blank=True, help_text='Choose which exhibit to highlight.', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='portal.exhibitpage')), ], options={ @@ -72,7 +72,7 @@ class Migration(migrations.Migration): ('sort_order', models.IntegerField(blank=True, editable=False, null=True)), ('id', models.AutoField(primary_key=True, serialize=False)), ('sidebar_title', models.CharField(blank=True, max_length=100, null=True)), - ('sidebar_text', wagtail.core.fields.RichTextField(blank=True, null=True)), + ('sidebar_text', wagtail.fields.RichTextField(blank=True, null=True)), ('page', modelcluster.fields.ParentalKey(on_delete=django.db.models.deletion.CASCADE, related_name='sidebar', to='portal.exhibitpage')), ], options={ @@ -86,7 +86,7 @@ class Migration(migrations.Migration): ('sort_order', models.IntegerField(blank=True, editable=False, null=True)), ('id', models.AutoField(primary_key=True, serialize=False)), ('sidebar_title', models.CharField(blank=True, max_length=100, null=True)), - ('sidebar_text', wagtail.core.fields.RichTextField(blank=True, null=True)), + ('sidebar_text', wagtail.fields.RichTextField(blank=True, null=True)), ('page', modelcluster.fields.ParentalKey(on_delete=django.db.models.deletion.CASCADE, related_name='sidebar', to='portal.exhibitindexpage')), ], options={ @@ -99,10 +99,10 @@ class Migration(migrations.Migration): fields=[ ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.page')), ('caption', models.CharField(blank=True, help_text='Displays underneath the image on the curated topic page and as alt text.', max_length=400)), - ('body', wagtail.core.fields.RichTextField(blank=True, null=True)), + ('body', wagtail.fields.RichTextField(blank=True, null=True)), ('byline', models.CharField(blank=True, help_text='Author name, appears below the body.', max_length=200)), ('search_url', models.URLField(max_length=2000)), - ('bottom_text', wagtail.core.fields.RichTextField(blank=True, null=True)), + ('bottom_text', wagtail.fields.RichTextField(blank=True, null=True)), ('image', models.ForeignKey(blank=True, help_text='A small version of this image will display on the portal homepage, and a large version will display at the top of each curated topic page.', null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailimages.image')), ], options={ @@ -116,7 +116,7 @@ class Migration(migrations.Migration): ('sort_order', models.IntegerField(blank=True, editable=False, null=True)), ('id', models.AutoField(primary_key=True, serialize=False)), ('sidebar_title', models.CharField(blank=True, max_length=100, null=True)), - ('sidebar_text', wagtail.core.fields.RichTextField(blank=True, null=True)), + ('sidebar_text', wagtail.fields.RichTextField(blank=True, null=True)), ('page', modelcluster.fields.ParentalKey(on_delete=django.db.models.deletion.CASCADE, related_name='sidebar', to='portal.curatedtopicindexpage')), ], options={ @@ -130,8 +130,8 @@ class Migration(migrations.Migration): ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('name', models.CharField(help_text='Archive name.', max_length=200)), ('address', models.CharField(blank=True, help_text='Street address.', max_length=400)), - ('link', wagtail.core.fields.RichTextField(blank=True, help_text='Link back to archive homepage, contact page, or other informational page.', max_length=2000)), - ('spotlight', wagtail.core.fields.RichTextField(blank=True, help_text='Spotlight text for the portal homepage.')), + ('link', wagtail.fields.RichTextField(blank=True, help_text='Link back to archive homepage, contact page, or other informational page.', max_length=2000)), + ('spotlight', wagtail.fields.RichTextField(blank=True, help_text='Spotlight text for the portal homepage.')), ('finding_aid_prefix', models.CharField(help_text='Prefix that associates specific EAD filenames with this archive, in the form "BMRC."', max_length=200)), ('is_member', models.BooleanField(default=True, help_text='Member archives will be included in the portal homepage rotation.')), ('order', models.IntegerField(default=1000, help_text='Choose the order this archive should appear in when featured on the portal homepage.')), diff --git a/portal/migrations/0002_auto_20220121_1629.py b/portal/migrations/0002_auto_20220121_1629.py index 1a639c8..ef2eda9 100644 --- a/portal/migrations/0002_auto_20220121_1629.py +++ b/portal/migrations/0002_auto_20220121_1629.py @@ -4,8 +4,8 @@ import django.db.models.deletion import modelcluster.fields import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -22,7 +22,7 @@ class Migration(migrations.Migration): name='PortalStandardPage', fields=[ ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.page')), - ('body', wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True)), + ('body', wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True)), ], options={ 'abstract': False, @@ -40,7 +40,7 @@ class Migration(migrations.Migration): ('sort_order', models.IntegerField(blank=True, editable=False, null=True)), ('id', models.AutoField(primary_key=True, serialize=False)), ('sidebar_title', models.CharField(blank=True, max_length=100, null=True)), - ('sidebar_text', wagtail.core.fields.RichTextField(blank=True, null=True)), + ('sidebar_text', wagtail.fields.RichTextField(blank=True, null=True)), ('page', modelcluster.fields.ParentalKey(on_delete=django.db.models.deletion.CASCADE, related_name='sidebar', to='portal.portalstandardpage')), ], options={ diff --git a/portal/migrations/0003_auto_20230308_1833.py b/portal/migrations/0003_auto_20230308_1833.py index 9916648..5f2d5b5 100644 --- a/portal/migrations/0003_auto_20230308_1833.py +++ b/portal/migrations/0003_auto_20230308_1833.py @@ -2,8 +2,8 @@ from django.db import migrations import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -17,21 +17,21 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='curatedtopicindexpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.core.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), ), migrations.AlterField( model_name='exhibitindexpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.core.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), ), migrations.AlterField( model_name='exhibitpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.core.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), ), migrations.AlterField( model_name='portalstandardpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.core.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), ), ] diff --git a/portal/migrations/0004_auto_20231005_1859.py b/portal/migrations/0004_auto_20231005_1859.py index b11136c..5cb4243 100644 --- a/portal/migrations/0004_auto_20231005_1859.py +++ b/portal/migrations/0004_auto_20231005_1859.py @@ -4,8 +4,8 @@ from django.db import migrations import re import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -19,21 +19,21 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='curatedtopicindexpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.core.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')])), ('anchor', wagtail.core.blocks.CharBlock(help_text='Slug for anchor link', max_length=50, required=False, validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+\\Z'), 'Enter a valid “slug” consisting of letters, numbers, underscores or hyphens.', 'invalid')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')])), ('anchor', wagtail.blocks.CharBlock(help_text='Slug for anchor link', max_length=50, required=False, validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+\\Z'), 'Enter a valid “slug” consisting of letters, numbers, underscores or hyphens.', 'invalid')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), ), migrations.AlterField( model_name='exhibitindexpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.core.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')])), ('anchor', wagtail.core.blocks.CharBlock(help_text='Slug for anchor link', max_length=50, required=False, validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+\\Z'), 'Enter a valid “slug” consisting of letters, numbers, underscores or hyphens.', 'invalid')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')])), ('anchor', wagtail.blocks.CharBlock(help_text='Slug for anchor link', max_length=50, required=False, validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+\\Z'), 'Enter a valid “slug” consisting of letters, numbers, underscores or hyphens.', 'invalid')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), ), migrations.AlterField( model_name='exhibitpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.core.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')])), ('anchor', wagtail.core.blocks.CharBlock(help_text='Slug for anchor link', max_length=50, required=False, validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+\\Z'), 'Enter a valid “slug” consisting of letters, numbers, underscores or hyphens.', 'invalid')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')])), ('anchor', wagtail.blocks.CharBlock(help_text='Slug for anchor link', max_length=50, required=False, validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+\\Z'), 'Enter a valid “slug” consisting of letters, numbers, underscores or hyphens.', 'invalid')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), ), migrations.AlterField( model_name='portalstandardpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.core.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')])), ('anchor', wagtail.core.blocks.CharBlock(help_text='Slug for anchor link', max_length=50, required=False, validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+\\Z'), 'Enter a valid “slug” consisting of letters, numbers, underscores or hyphens.', 'invalid')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')])), ('anchor', wagtail.blocks.CharBlock(help_text='Slug for anchor link', max_length=50, required=False, validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+\\Z'), 'Enter a valid “slug” consisting of letters, numbers, underscores or hyphens.', 'invalid')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), ), ] diff --git a/portal/models.py b/portal/models.py index fdafcb4..ca193fe 100644 --- a/portal/models.py +++ b/portal/models.py @@ -7,15 +7,15 @@ from modelcluster.fields import ParentalKey from pygments import highlight from streams import blocks -from wagtail.admin.edit_handlers import ( +from wagtail.admin.panels import ( FieldPanel, HelpPanel, InlinePanel, MultiFieldPanel, PageChooserPanel, ) -from wagtail.core.fields import RichTextField, StreamField -from wagtail.core.models import Orderable, Page +from wagtail.fields import RichTextField, StreamField +from wagtail.models import Orderable, Page from wagtail.images.models import Image from wagtail.search import index @@ -108,7 +108,6 @@ class CuratedTopicIndexPage(Page): ], null=True, blank=True, - use_json_field=True, ) content_panels = Page.content_panels + [ @@ -230,7 +229,6 @@ class ExhibitIndexPage(Page): ], null=True, blank=True, - use_json_field=True, ) content_panels = Page.content_panels + [ @@ -295,7 +293,6 @@ class ExhibitPage(Page): ], null=True, blank=True, - use_json_field=True, ) content_panels = Page.content_panels + [ @@ -482,7 +479,6 @@ class PortalStandardPage(Page): ], null=True, blank=True, - use_json_field=True, ) content_panels = Page.content_panels + [ diff --git a/requirements-dev.txt b/requirements-dev.txt index 36ebf30..abbb36b 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -4,3 +4,4 @@ curlylint==0.13.1 djhtml==1.5.2 flake8==6.0.0 isort==5.11.4 +tblib diff --git a/requirements.txt b/requirements.txt index 81812ca..9392897 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ -Django==4.1.12 -wagtail==4.1.9 +Django==5.0.7 +wagtail==6.1.3 django-compressor django-libsass django-static-precompiler @@ -10,6 +10,5 @@ pysocks requests_cache requests_toolbelt wagtail-django-recaptcha -wagtailmedia==0.11.0 - +wagtailmedia==0.15.2 -e git+https://github.com/rev138/django-shibboleth-remoteuser.git#egg=django_shibboleth_remoteuser diff --git a/search/views.py b/search/views.py index eeace7c..47be6b9 100644 --- a/search/views.py +++ b/search/views.py @@ -1,8 +1,7 @@ from django.core.paginator import EmptyPage, PageNotAnInteger, Paginator from django.shortcuts import render - -from wagtail.core.models import Page -from wagtail.search.models import Query +from wagtail.contrib.search_promotions.models import Query +from wagtail.models import Page def search(request): @@ -28,7 +27,11 @@ def search(request): except EmptyPage: search_results = paginator.page(paginator.num_pages) - return render(request, 'search/search.html', { - 'search_query': search_query, - 'search_results': search_results, - }) + return render( + request, + 'search/search.html', + { + 'search_query': search_query, + 'search_results': search_results, + }, + ) diff --git a/site_settings/migrations/0001_initial.py b/site_settings/migrations/0001_initial.py index 6cd81b7..d21d6a2 100644 --- a/site_settings/migrations/0001_initial.py +++ b/site_settings/migrations/0001_initial.py @@ -2,7 +2,7 @@ from django.db import migrations, models import django.db.models.deletion -import wagtail.core.fields +import wagtail.fields class Migration(migrations.Migration): @@ -21,7 +21,7 @@ class Migration(migrations.Migration): ('facebook', models.URLField(blank=True, help_text='Facebook URL', null=True)), ('twitter', models.URLField(blank=True, help_text='Twitter URL', null=True)), ('instagram', models.URLField(blank=True, help_text='Instagram profile URL', null=True)), - ('address', wagtail.core.fields.RichTextField(blank=True, help_text='Mailing address', null=True)), + ('address', wagtail.fields.RichTextField(blank=True, help_text='Mailing address', null=True)), ('site', models.OneToOneField(editable=False, on_delete=django.db.models.deletion.CASCADE, to='wagtailcore.Site')), ], options={ diff --git a/site_settings/migrations/0002_alertbanner.py b/site_settings/migrations/0002_alertbanner.py index 2265ad7..c697234 100644 --- a/site_settings/migrations/0002_alertbanner.py +++ b/site_settings/migrations/0002_alertbanner.py @@ -2,7 +2,7 @@ from django.db import migrations, models import django.db.models.deletion -import wagtail.core.fields +import wagtail.fields class Migration(migrations.Migration): @@ -18,7 +18,7 @@ class Migration(migrations.Migration): fields=[ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('enable', models.BooleanField(default=False, help_text='Checking this box will enable the alert on all web pages.')), - ('alert_message', wagtail.core.fields.RichTextField(blank=True, help_text='Alert Message', null=True)), + ('alert_message', wagtail.fields.RichTextField(blank=True, help_text='Alert Message', null=True)), ('alert_level', models.CharField(choices=[('alert-info', 'Informational Alert'), ('alert-low', 'General Alert'), ('alert-high', 'Critical Alert')], default='alert-info', max_length=25)), ('site', models.OneToOneField(editable=False, on_delete=django.db.models.deletion.CASCADE, to='wagtailcore.Site')), ], diff --git a/site_settings/models.py b/site_settings/models.py index ea99831..8978158 100644 --- a/site_settings/models.py +++ b/site_settings/models.py @@ -1,8 +1,8 @@ from django.db import models -from wagtail.admin.edit_handlers import FieldPanel, MultiFieldPanel +from wagtail.admin.panels import FieldPanel, MultiFieldPanel from wagtail.contrib.settings.models import BaseSiteSetting, register_setting -from wagtail.core.fields import RichTextField +from wagtail.fields import RichTextField @register_setting diff --git a/standard/migrations/0001_initial.py b/standard/migrations/0001_initial.py index 5585ef3..8417d0f 100644 --- a/standard/migrations/0001_initial.py +++ b/standard/migrations/0001_initial.py @@ -3,8 +3,8 @@ from django.db import migrations, models import django.db.models.deletion import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -21,7 +21,7 @@ class Migration(migrations.Migration): name='StandardPage', fields=[ ('page_ptr', models.OneToOneField(auto_created=True, on_delete=django.db.models.deletion.CASCADE, parent_link=True, primary_key=True, serialize=False, to='wagtailcore.Page')), - ('body', wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('page_callout', wagtail.core.blocks.StructBlock([('callout_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], label='Callout Text', required=False)), ('button_link', wagtail.core.blocks.PageChooserBlock(help_text='Where you want the button to go', required=False)), ('button_label', wagtail.core.blocks.CharBlock(help_text='Text that shows up in button', required=False))])), ('new_row', wagtail.core.blocks.StructBlock([])), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))]))], blank=True, null=True)), + ('body', wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('page_callout', wagtail.blocks.StructBlock([('callout_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], label='Callout Text', required=False)), ('button_link', wagtail.blocks.PageChooserBlock(help_text='Where you want the button to go', required=False)), ('button_label', wagtail.blocks.CharBlock(help_text='Text that shows up in button', required=False))])), ('new_row', wagtail.blocks.StructBlock([])), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))]))], blank=True, null=True)), ], options={ 'verbose_name': 'Standard Page', diff --git a/standard/migrations/0002_auto_20191023_2322.py b/standard/migrations/0002_auto_20191023_2322.py index 564ff8f..67ebed4 100644 --- a/standard/migrations/0002_auto_20191023_2322.py +++ b/standard/migrations/0002_auto_20191023_2322.py @@ -4,8 +4,8 @@ import django.db.models.deletion import modelcluster.fields import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -19,7 +19,7 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='standardpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('page_callout', wagtail.core.blocks.StructBlock([('callout_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], label='Callout Text', required=False)), ('button_link', wagtail.core.blocks.PageChooserBlock(help_text='Where you want the button to go', required=False)), ('button_label', wagtail.core.blocks.CharBlock(help_text='Text that shows up in button', required=False))])), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))])), ('new_row', wagtail.core.blocks.StructBlock([]))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('page_callout', wagtail.blocks.StructBlock([('callout_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], label='Callout Text', required=False)), ('button_link', wagtail.blocks.PageChooserBlock(help_text='Where you want the button to go', required=False)), ('button_label', wagtail.blocks.CharBlock(help_text='Text that shows up in button', required=False))])), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))])), ('new_row', wagtail.blocks.StructBlock([]))], blank=True, null=True), ), migrations.CreateModel( name='SideBar', @@ -27,7 +27,7 @@ class Migration(migrations.Migration): ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), ('sort_order', models.IntegerField(blank=True, editable=False, null=True)), ('sidebar_title', models.CharField(blank=True, max_length=100, null=True)), - ('sidebar_text', wagtail.core.fields.RichTextField(blank=True, null=True)), + ('sidebar_text', wagtail.fields.RichTextField(blank=True, null=True)), ('page', modelcluster.fields.ParentalKey(on_delete=django.db.models.deletion.CASCADE, related_name='sidebar', to='standard.StandardPage')), ], options={ diff --git a/standard/migrations/0003_auto_20191024_2110.py b/standard/migrations/0003_auto_20191024_2110.py index ece55d7..9921be4 100644 --- a/standard/migrations/0003_auto_20191024_2110.py +++ b/standard/migrations/0003_auto_20191024_2110.py @@ -2,8 +2,8 @@ from django.db import migrations import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -17,6 +17,6 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='standardpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('page_callout', wagtail.core.blocks.StructBlock([('callout_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], label='Callout Text', required=False)), ('button_link', wagtail.core.blocks.PageChooserBlock(help_text='Where you want the button to go', required=False)), ('button_label', wagtail.core.blocks.CharBlock(help_text='Text that shows up in button', required=False))])), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))])), ('new_row', wagtail.core.blocks.StructBlock([])), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Profile Text', required=False))]))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('page_callout', wagtail.blocks.StructBlock([('callout_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], label='Callout Text', required=False)), ('button_link', wagtail.blocks.PageChooserBlock(help_text='Where you want the button to go', required=False)), ('button_label', wagtail.blocks.CharBlock(help_text='Text that shows up in button', required=False))])), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))])), ('new_row', wagtail.blocks.StructBlock([])), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Profile Text', required=False))]))], blank=True, null=True), ), ] diff --git a/standard/migrations/0004_auto_20200117_2147.py b/standard/migrations/0004_auto_20200117_2147.py index de7dc8f..7d41599 100644 --- a/standard/migrations/0004_auto_20200117_2147.py +++ b/standard/migrations/0004_auto_20200117_2147.py @@ -2,8 +2,8 @@ from django.db import migrations import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -17,6 +17,6 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='standardpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))])), ('page_callout', wagtail.core.blocks.StructBlock([('callout_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], label='Callout Text', required=False)), ('button_link', wagtail.core.blocks.PageChooserBlock(help_text='Where you want the button to go', required=False)), ('button_label', wagtail.core.blocks.CharBlock(help_text='Text that shows up in button', required=False))])), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))])), ('new_row', wagtail.core.blocks.StructBlock([]))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))])), ('page_callout', wagtail.blocks.StructBlock([('callout_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], label='Callout Text', required=False)), ('button_link', wagtail.blocks.PageChooserBlock(help_text='Where you want the button to go', required=False)), ('button_label', wagtail.blocks.CharBlock(help_text='Text that shows up in button', required=False))])), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))])), ('new_row', wagtail.blocks.StructBlock([]))], blank=True, null=True), ), ] diff --git a/standard/migrations/0005_auto_20200118_0243.py b/standard/migrations/0005_auto_20200118_0243.py index a68bc19..4d51cc9 100644 --- a/standard/migrations/0005_auto_20200118_0243.py +++ b/standard/migrations/0005_auto_20200118_0243.py @@ -2,8 +2,8 @@ from django.db import migrations import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -17,6 +17,6 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='standardpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))])), ('page_callout', wagtail.core.blocks.StructBlock([('callout_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], label='Callout Text', required=False)), ('button_link', wagtail.core.blocks.PageChooserBlock(help_text='Where you want the button to go', required=False)), ('button_label', wagtail.core.blocks.CharBlock(help_text='Text that shows up in button', required=False))])), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))]))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock()), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))])), ('page_callout', wagtail.blocks.StructBlock([('callout_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], label='Callout Text', required=False)), ('button_link', wagtail.blocks.PageChooserBlock(help_text='Where you want the button to go', required=False)), ('button_label', wagtail.blocks.CharBlock(help_text='Text that shows up in button', required=False))])), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))]))], blank=True, null=True), ), ] diff --git a/standard/migrations/0006_auto_20200804_1910.py b/standard/migrations/0006_auto_20200804_1910.py index 7afe46b..08df537 100644 --- a/standard/migrations/0006_auto_20200804_1910.py +++ b/standard/migrations/0006_auto_20200804_1910.py @@ -2,8 +2,8 @@ from django.db import migrations import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -17,6 +17,6 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='standardpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('page_callout', wagtail.core.blocks.StructBlock([('callout_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], label='Callout Text', required=False)), ('button_link', wagtail.core.blocks.PageChooserBlock(help_text='Where you want the button to go', required=False)), ('button_label', wagtail.core.blocks.CharBlock(help_text='Text that shows up in button', required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))], group='Layout and Images'))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('page_callout', wagtail.blocks.StructBlock([('callout_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('callout_text', streams.blocks.RichtextBlock(features=['bold', 'italic', 'ol', 'ul', 'link', 'document-link'], label='Callout Text', required=False)), ('button_link', wagtail.blocks.PageChooserBlock(help_text='Where you want the button to go', required=False)), ('button_label', wagtail.blocks.CharBlock(help_text='Text that shows up in button', required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))], group='Layout and Images'))], blank=True, null=True), ), ] diff --git a/standard/migrations/0007_auto_20200820_2135.py b/standard/migrations/0007_auto_20200820_2135.py index 668d0fb..49e1f04 100644 --- a/standard/migrations/0007_auto_20200820_2135.py +++ b/standard/migrations/0007_auto_20200820_2135.py @@ -2,8 +2,8 @@ from django.db import migrations import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -17,6 +17,6 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='standardpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images'))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images'))], blank=True, null=True), ), ] diff --git a/standard/migrations/0008_auto_20210726_1829.py b/standard/migrations/0008_auto_20210726_1829.py index 27374ed..2b85533 100644 --- a/standard/migrations/0008_auto_20210726_1829.py +++ b/standard/migrations/0008_auto_20210726_1829.py @@ -2,8 +2,8 @@ from django.db import migrations import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -17,6 +17,6 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='standardpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), ), ] diff --git a/standard/migrations/0010_alter_standardpage_body.py b/standard/migrations/0010_alter_standardpage_body.py index 0d8d380..84533b0 100644 --- a/standard/migrations/0010_alter_standardpage_body.py +++ b/standard/migrations/0010_alter_standardpage_body.py @@ -2,8 +2,8 @@ from django.db import migrations import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -17,6 +17,6 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='standardpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.core.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), ), ] diff --git a/standard/migrations/0011_alter_standardpage_body.py b/standard/migrations/0011_alter_standardpage_body.py index 3d957eb..b2f6c85 100644 --- a/standard/migrations/0011_alter_standardpage_body.py +++ b/standard/migrations/0011_alter_standardpage_body.py @@ -4,8 +4,8 @@ from django.db import migrations import re import streams.blocks -import wagtail.core.blocks -import wagtail.core.fields +import wagtail.blocks +import wagtail.fields import wagtail.images.blocks @@ -19,6 +19,6 @@ class Migration(migrations.Migration): migrations.AlterField( model_name='standardpage', name='body', - field=wagtail.core.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.core.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.core.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.core.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.core.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')])), ('anchor', wagtail.core.blocks.CharBlock(help_text='Slug for anchor link', max_length=50, required=False, validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+\\Z'), 'Enter a valid “slug” consisting of letters, numbers, underscores or hyphens.', 'invalid')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.core.blocks.StructBlock([('webfeed_title', wagtail.core.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.core.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), + field=wagtail.fields.StreamField([('richtext', streams.blocks.RichtextBlock(group='Format and Text')), ('two_column_block', wagtail.blocks.StreamBlock([('new_column', streams.blocks.RichtextBlock(icon='arrow-right', label='New Column'))], group='Format and Text')), ('info_box_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'ol', 'ul', 'hr', 'italic', 'link', 'document-link'], label='Featured Text', required=True)), ('style_type', streams.blocks.InfoBoxStyleChoiceBlock(required=True))], group='Format and Text')), ('footnote_block', wagtail.blocks.StructBlock([('text', streams.blocks.RichtextBlock(features=['bold', 'ol', 'ul', 'italic', 'link', 'document-link'], label='Footnote Text', required=False))], group='Format and Text')), ('image_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(required=False)), ('caption', streams.blocks.RichtextBlock(features=['bold', 'italic', 'link'], label='Caption', required=False)), ('alignment', streams.blocks.ImageFormatChoiceBlock(required=False))], group='Layout and Images')), ('fellows_block', wagtail.blocks.StructBlock([('image', wagtail.images.blocks.ImageChooserBlock(label='Profile Photo', required=False)), ('profile_text', streams.blocks.RichtextBlock(features=['h2', 'h3', 'bold', 'italic', 'link'], label='Profile Text', required=False)), ('size', wagtail.blocks.ChoiceBlock(choices=[('LG', 'Large'), ('MD', 'Medium'), ('SM', 'Small')])), ('anchor', wagtail.blocks.CharBlock(help_text='Slug for anchor link', max_length=50, required=False, validators=[django.core.validators.RegexValidator(re.compile('^[-a-zA-Z0-9_]+\\Z'), 'Enter a valid “slug” consisting of letters, numbers, underscores or hyphens.', 'invalid')]))], group='Layout and Images')), ('clear_block', streams.blocks.ClearBlock(group='Layout and Images')), ('webfeed', wagtail.blocks.StructBlock([('webfeed_title', wagtail.blocks.CharBlock(help_text='Title for callout section', required=False)), ('webfeed_code', wagtail.blocks.RawHTMLBlock(required=False))], group='Layout and Images'))], blank=True, null=True), ), ] diff --git a/standard/models.py b/standard/models.py index 66013c1..9893cf8 100644 --- a/standard/models.py +++ b/standard/models.py @@ -4,13 +4,13 @@ from modelcluster.fields import ParentalKey -from wagtail.admin.edit_handlers import ( +from wagtail.admin.panels import ( FieldPanel, InlinePanel, MultiFieldPanel, ) -from wagtail.core.fields import RichTextField, StreamField -from wagtail.core.models import Page, Orderable +from wagtail.fields import RichTextField, StreamField +from wagtail.models import Page, Orderable from wagtail.search import index from streams import blocks @@ -59,7 +59,6 @@ class StandardPage(Page): ], null=True, blank=True, - use_json_field=True, ) content_panels = Page.content_panels + [ diff --git a/streams/blocks.py b/streams/blocks.py index 14aa9c1..32ca40c 100644 --- a/streams/blocks.py +++ b/streams/blocks.py @@ -2,9 +2,8 @@ from django import forms from django.core.validators import validate_slug -from django.db.models.fields import SlugField -from wagtail.core import blocks -from wagtail.core.blocks import (CharBlock, ChoiceBlock, FieldBlock, +from wagtail import blocks +from wagtail.blocks import (CharBlock, ChoiceBlock, FieldBlock, RawHTMLBlock, StaticBlock, StreamBlock) from wagtail.images.blocks import ImageChooserBlock diff --git a/streams/wagtail_hooks.py b/streams/wagtail_hooks.py index e4e9530..b2df5de 100644 --- a/streams/wagtail_hooks.py +++ b/streams/wagtail_hooks.py @@ -1,7 +1,7 @@ """Richtext hooks.""" import wagtail.admin.rich_text.editors.draftail.features as draftail_features from wagtail.admin.rich_text.converters.html_to_contentstate import InlineStyleElementHandler -from wagtail.core import hooks +from wagtail import hooks @hooks.register("register_rich_text_features")