SciPost Code Repository
Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SciPost
Manage
Activity
Members
Labels
Plan
Issues
118
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
0
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
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
SciPost
SciPost
Commits
ca999e63
"README.rst" did not exist on "7fb3863fd9faa32b484c5fcb6d5358f30edc08ad"
Commit
ca999e63
authored
6 years ago
by
Jean-Sébastien Caux
Browse files
Options
Downloads
Patches
Plain Diff
Add shortcut to toggle SubsidyAttachment public visibility
parent
91014a5c
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
finances/templates/finances/_subsidy_card.html
+1
-1
1 addition, 1 deletion
finances/templates/finances/_subsidy_card.html
finances/urls.py
+5
-2
5 additions, 2 deletions
finances/urls.py
finances/views.py
+16
-1
16 additions, 1 deletion
finances/views.py
with
22 additions
and
4 deletions
finances/templates/finances/_subsidy_card.html
+
1
−
1
View file @
ca999e63
...
@@ -78,7 +78,7 @@
...
@@ -78,7 +78,7 @@
<tr>
<tr>
<td><a
href=
"{{ att.get_absolute_url }}"
target=
"_blank"
>
{{ att.name }}
</a></td>
<td><a
href=
"{{ att.get_absolute_url }}"
target=
"_blank"
>
{{ att.name }}
</a></td>
{% if perms.scipost.can_manage_subsidies or "can_view_org_contacts" in user_org_perms %}
{% if perms.scipost.can_manage_subsidies or "can_view_org_contacts" in user_org_perms %}
<td>
{% if att.publicly_visible %}
<i
class=
"fa fa-check-circle text-success"
></i>
{% else %}
<i
class=
"fa fa-times-circle text-danger"
></i>
{% endif %}
</td>
<td>
{% if att.publicly_visible %}
<i
class=
"fa fa-check-circle text-success"
></i>
{% else %}
<i
class=
"fa fa-times-circle text-danger"
></i>
{% endif %}
<a
href=
"{% url 'finances:subsidy_attachment_toggle_public_visibility' attachment_id=att.id %}"
class=
"small"
>
Make it {% if att.publicly_visible %}in{% endif %}visible
</a>
</td>
{% if perms.scipost.can_manage_subsidies %}
{% if perms.scipost.can_manage_subsidies %}
<td><a
href=
"{% url 'finances:subsidyattachment_update' pk=att.id %}"
><span
class=
"text-warning"
>
Update
</span></a></td>
<td><a
href=
"{% url 'finances:subsidyattachment_update' pk=att.id %}"
><span
class=
"text-warning"
>
Update
</span></a></td>
<td><a
href=
"{% url 'finances:subsidyattachment_delete' pk=att.id %}"
><span
class=
"text-danger"
>
Delete
</span></a></td>
<td><a
href=
"{% url 'finances:subsidyattachment_delete' pk=att.id %}"
><span
class=
"text-danger"
>
Delete
</span></a></td>
...
...
This diff is collapsed.
Click to expand it.
finances/urls.py
+
5
−
2
View file @
ca999e63
...
@@ -18,8 +18,6 @@ urlpatterns = [
...
@@ -18,8 +18,6 @@ urlpatterns = [
url
(
r
'
^subsidies/(?P<pk>[0-9]+)/delete/$
'
,
views
.
SubsidyDeleteView
.
as_view
(),
url
(
r
'
^subsidies/(?P<pk>[0-9]+)/delete/$
'
,
views
.
SubsidyDeleteView
.
as_view
(),
name
=
'
subsidy_delete
'
),
name
=
'
subsidy_delete
'
),
url
(
r
'
^subsidies/(?P<pk>[0-9]+)/$
'
,
views
.
SubsidyDetailView
.
as_view
(),
name
=
'
subsidy_details
'
),
url
(
r
'
^subsidies/(?P<pk>[0-9]+)/$
'
,
views
.
SubsidyDetailView
.
as_view
(),
name
=
'
subsidy_details
'
),
url
(
r
'
^subsidies/(?P<subsidy_id>[0-9]+)/attachments/(?P<attachment_id>[0-9]+)$
'
,
views
.
subsidy_attachment
,
name
=
'
subsidy_attachment
'
),
url
(
r
'
^subsidies/(?P<subsidy_id>[0-9]+)/attachments/add/$
'
,
url
(
r
'
^subsidies/(?P<subsidy_id>[0-9]+)/attachments/add/$
'
,
views
.
SubsidyAttachmentCreateView
.
as_view
(),
views
.
SubsidyAttachmentCreateView
.
as_view
(),
name
=
'
subsidyattachment_create
'
),
name
=
'
subsidyattachment_create
'
),
...
@@ -29,6 +27,11 @@ urlpatterns = [
...
@@ -29,6 +27,11 @@ urlpatterns = [
url
(
r
'
^subsidies/attachments/(?P<pk>[0-9]+)/delete/$
'
,
url
(
r
'
^subsidies/attachments/(?P<pk>[0-9]+)/delete/$
'
,
views
.
SubsidyAttachmentDeleteView
.
as_view
(),
views
.
SubsidyAttachmentDeleteView
.
as_view
(),
name
=
'
subsidyattachment_delete
'
),
name
=
'
subsidyattachment_delete
'
),
url
(
r
'
^subsidies/attachments/(?P<attachment_id>[0-9]+)/toggle_visibility/$
'
,
views
.
subsidy_attachment_toggle_public_visibility
,
name
=
'
subsidy_attachment_toggle_public_visibility
'
),
url
(
r
'
^subsidies/(?P<subsidy_id>[0-9]+)/attachments/(?P<attachment_id>[0-9]+)$
'
,
views
.
subsidy_attachment
,
name
=
'
subsidy_attachment
'
),
# Timesheets
# Timesheets
url
(
r
'
^timesheets$
'
,
views
.
timesheets
,
name
=
'
timesheets
'
),
url
(
r
'
^timesheets$
'
,
views
.
timesheets
,
name
=
'
timesheets
'
),
...
...
This diff is collapsed.
Click to expand it.
finances/views.py
+
16
−
1
View file @
ca999e63
...
@@ -10,7 +10,7 @@ from django.contrib.auth.mixins import LoginRequiredMixin
...
@@ -10,7 +10,7 @@ from django.contrib.auth.mixins import LoginRequiredMixin
from
django.core.exceptions
import
PermissionDenied
from
django.core.exceptions
import
PermissionDenied
from
django.core.urlresolvers
import
reverse_lazy
from
django.core.urlresolvers
import
reverse_lazy
from
django.http
import
Http404
,
HttpResponse
from
django.http
import
Http404
,
HttpResponse
from
django.shortcuts
import
get_object_or_404
,
render
from
django.shortcuts
import
get_object_or_404
,
render
,
redirect
from
django.views.generic.detail
import
DetailView
from
django.views.generic.detail
import
DetailView
from
django.views.generic.edit
import
CreateView
,
UpdateView
,
DeleteView
from
django.views.generic.edit
import
CreateView
,
UpdateView
,
DeleteView
from
django.views.generic.list
import
ListView
from
django.views.generic.list
import
ListView
...
@@ -142,6 +142,21 @@ class SubsidyAttachmentDeleteView(PermissionsMixin, DeleteView):
...
@@ -142,6 +142,21 @@ class SubsidyAttachmentDeleteView(PermissionsMixin, DeleteView):
return
reverse_lazy
(
'
finances:subsidy_details
'
,
kwargs
=
{
'
pk
'
:
self
.
object
.
subsidy
.
id
})
return
reverse_lazy
(
'
finances:subsidy_details
'
,
kwargs
=
{
'
pk
'
:
self
.
object
.
subsidy
.
id
})
def
subsidy_attachment_toggle_public_visibility
(
request
,
attachment_id
):
"""
Method to toggle the public visibility of an attachment to a Subsidy.
Callable by Admin and Contacts for the relevant Organization.
"""
attachment
=
get_object_or_404
(
SubsidyAttachment
,
pk
=
attachment_id
)
if
not
(
request
.
user
.
has_perm
(
'
scipost.can_manage_subsidies
'
)
or
request
.
user
.
has_perm
(
'
can_view_org_contacts
'
,
attachment
.
subsidy
.
organization
)):
raise
PermissionDenied
attachment
.
publicly_visible
=
not
attachment
.
publicly_visible
attachment
.
save
()
messages
.
success
(
request
,
'
Attachment visibility set to %s
'
%
attachment
.
publicly_visible
)
return
redirect
(
attachment
.
subsidy
.
get_absolute_url
())
def
subsidy_attachment
(
request
,
subsidy_id
,
attachment_id
):
def
subsidy_attachment
(
request
,
subsidy_id
,
attachment_id
):
attachment
=
get_object_or_404
(
SubsidyAttachment
.
objects
,
attachment
=
get_object_or_404
(
SubsidyAttachment
.
objects
,
subsidy__id
=
subsidy_id
,
id
=
attachment_id
)
subsidy__id
=
subsidy_id
,
id
=
attachment_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