Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AKPlanning
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Felix Blanke
AKPlanning
Commits
bbdc77d8
Commit
bbdc77d8
authored
5 years ago
by
Nadja Geisler
Browse files
Options
Downloads
Patches
Plain Diff
auto-generate ak link only if event base url was set
parent
dca019c0
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
AKSubmission/views.py
+8
-6
8 additions, 6 deletions
AKSubmission/views.py
with
8 additions
and
6 deletions
AKSubmission/views.py
+
8
−
6
View file @
bbdc77d8
from
django.conf
import
settings
from
django.contrib
import
messages
from
django.contrib
import
messages
from
django.http
import
Http404
,
HttpResponseRedirect
from
django.http
import
Http404
,
HttpResponseRedirect
from
django.shortcuts
import
get_object_or_404
from
django.shortcuts
import
get_object_or_404
...
@@ -10,10 +11,7 @@ from AKModel.models import AK, AKCategory, AKTag, AKOwner, AKSlot
...
@@ -10,10 +11,7 @@ from AKModel.models import AK, AKCategory, AKTag, AKOwner, AKSlot
from
AKModel.models
import
Event
from
AKModel.models
import
Event
from
AKModel.views
import
EventSlugMixin
from
AKModel.views
import
EventSlugMixin
from
AKModel.views
import
FilterByEventSlugMixin
from
AKModel.views
import
FilterByEventSlugMixin
from
AKSubmission.forms
import
AKWishForm
,
AKOwnerForm
,
AKEditForm
,
AKSubmissionForm
from
AKSubmission.forms
import
AKForm
,
AKWishForm
,
AKOwnerForm
,
AKEditForm
,
AKSubmissionForm
from
django.conf
import
settings
class
SubmissionOverviewView
(
FilterByEventSlugMixin
,
ListView
):
class
SubmissionOverviewView
(
FilterByEventSlugMixin
,
ListView
):
...
@@ -41,7 +39,8 @@ class SubmissionOverviewView(FilterByEventSlugMixin, ListView):
...
@@ -41,7 +39,8 @@ class SubmissionOverviewView(FilterByEventSlugMixin, ListView):
aks_for_category
.
append
(
ak
)
aks_for_category
.
append
(
ak
)
if
settings
.
WISHES_AS_CATEGORY
:
if
settings
.
WISHES_AS_CATEGORY
:
categories
.
append
(({
"
name
"
:
_
(
"
Wishes
"
),
"
pk
"
:
"
wish
"
,
"
description
"
:
_
(
"
AKs one would like to have
"
)},
ak_wishes
))
categories
.
append
(
({
"
name
"
:
_
(
"
Wishes
"
),
"
pk
"
:
"
wish
"
,
"
description
"
:
_
(
"
AKs one would like to have
"
)},
ak_wishes
))
context
[
"
categories
"
]
=
categories
context
[
"
categories
"
]
=
categories
# Get list of existing owners for event (for AK submission start)
# Get list of existing owners for event (for AK submission start)
...
@@ -109,7 +108,8 @@ class AKAndAKWishSubmissionView(EventSlugMixin, CreateView):
...
@@ -109,7 +108,8 @@ class AKAndAKWishSubmissionView(EventSlugMixin, CreateView):
super_form_valid
=
super
().
form_valid
(
form
)
super_form_valid
=
super
().
form_valid
(
form
)
# Generate wiki link
# Generate wiki link
self
.
object
.
link
=
form
.
cleaned_data
[
"
event
"
].
base_url
+
form
.
cleaned_data
[
"
name
"
].
replace
(
"
"
,
"
_
"
)
if
form
.
cleaned_data
[
"
event
"
].
base_url
:
self
.
object
.
link
=
form
.
cleaned_data
[
"
event
"
].
base_url
+
form
.
cleaned_data
[
"
name
"
].
replace
(
"
"
,
"
_
"
)
self
.
object
.
save
()
self
.
object
.
save
()
# Set tags (and generate them if necessary)
# Set tags (and generate them if necessary)
...
@@ -193,6 +193,7 @@ class AKOwnerSelectDispatchView(EventSlugMixin, View):
...
@@ -193,6 +193,7 @@ class AKOwnerSelectDispatchView(EventSlugMixin, View):
"""
"""
This view only serves as redirect to prepopulate the owners field in submission create view
This view only serves as redirect to prepopulate the owners field in submission create view
"""
"""
def
post
(
self
,
request
,
*
args
,
**
kwargs
):
def
post
(
self
,
request
,
*
args
,
**
kwargs
):
owner_id
=
request
.
POST
[
"
owner_id
"
]
owner_id
=
request
.
POST
[
"
owner_id
"
]
...
@@ -219,6 +220,7 @@ class AKOwnerEditDispatchView(EventSlugMixin, View):
...
@@ -219,6 +220,7 @@ class AKOwnerEditDispatchView(EventSlugMixin, View):
"""
"""
This view only serves as redirect choose the correct edit view
This view only serves as redirect choose the correct edit view
"""
"""
def
post
(
self
,
request
,
*
args
,
**
kwargs
):
def
post
(
self
,
request
,
*
args
,
**
kwargs
):
owner_id
=
request
.
POST
[
"
owner_id
"
]
owner_id
=
request
.
POST
[
"
owner_id
"
]
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment