Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Maják
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TO
Maják
Merge requests
!1204
Release
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Release
feat/fix-octo-import
into
test
Overview
0
Commits
4
Pipelines
1
Changes
7
Merged
Release
Alexa Valentová
requested to merge
feat/fix-octo-import
into
test
7 months ago
Overview
0
Commits
4
Pipelines
1
Changes
7
0
0
Merge request reports
Compare
test
test (base)
and
latest version
latest version
3b3d234d
4 commits,
7 months ago
7 files
+
142
−
17
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
main/migrations/0140_maincareerpage_closing_date_and_more.py
0 → 100644
+
46
−
0
View file @ 3b3d234d
Edit in single-file editor
Open in Web IDE
# Generated by Django 5.0.7 on 2024-12-18 07:15
import
django.utils.timezone
import
wagtail.fields
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
"
main
"
,
"
0139_maincareerpage_recipient_emails
"
),
]
operations
=
[
migrations
.
AddField
(
model_name
=
"
maincareerpage
"
,
name
=
"
closing_date
"
,
field
=
models
.
DateField
(
default
=
django
.
utils
.
timezone
.
now
,
verbose_name
=
"
Datum uzavření
"
),
preserve_default
=
False
,
),
migrations
.
AddField
(
model_name
=
"
maincareerpage
"
,
name
=
"
proceedings_url
"
,
field
=
models
.
URLField
(
blank
=
True
,
help_text
=
"
Na Redmine, Fóru apod.
"
,
null
=
True
,
verbose_name
=
"
Odkaz na průběh výběrového řízení
"
,
),
),
migrations
.
AddField
(
model_name
=
"
maincareerpage
"
,
name
=
"
result
"
,
field
=
wagtail
.
fields
.
RichTextField
(
blank
=
True
,
null
=
True
,
verbose_name
=
"
Výsledek výběrového řízení
"
),
),
migrations
.
AlterField
(
model_name
=
"
maincareerpage
"
,
name
=
"
content
"
,
field
=
wagtail
.
fields
.
RichTextField
(
blank
=
True
,
null
=
True
,
verbose_name
=
"
Text nabídky
"
),
),
]
Loading