diff --git a/.github/workflows/fly_pr_preview.yml b/.github/workflows/fly_pr_preview.yml
new file mode 100644
index 000000000000..38e2c2b610b7
--- /dev/null
+++ b/.github/workflows/fly_pr_preview.yml
@@ -0,0 +1,34 @@
+name: Start preview app
+
+on:
+  pull_request:
+    types: [labeled, synchronize, opened, reopened, close]
+    paths-ignore:
+      - 'docs/**'
+
+concurrency:
+  group: ${{ github.workflow }}-pr-${{ github.event.number }}
+  cancel-in-progress: true
+
+permissions:
+  contents: read
+
+env:
+  FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
+  FLY_REGION: waw
+  FLY_ORG: personal
+
+jobs:
+  preview-app:
+    if: contains(github.event.pull_request.labels.*.name, 'PR preview app')
+    runs-on: ubuntu-latest
+    name: Preview app
+    environment:
+      name: pr-${{github.event.number }}
+      url: ${{ steps.deploy.outputs.url }}
+    steps:
+      - name: Checkout
+        uses: actions/checkout@v4
+      - name: Deploy preview app
+        uses: superfly/fly-pr-review-apps@3054d034eeabacc4ec12fe09194f306f403c6783
+        id: deploy
diff --git a/django/views/templates/default_urlconf.html b/django/views/templates/default_urlconf.html
index 6bb170cc6761..72ae860e7e6a 100644
--- a/django/views/templates/default_urlconf.html
+++ b/django/views/templates/default_urlconf.html
@@ -218,6 +218,7 @@
           
{% blocktranslate %}You are seeing this page because DEBUG=True is in your settings file and you have not configured any URLs.{% endblocktranslate %}