Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
third-party
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cooperatic-foodcoops
third-party
Commits
26caf3ed
Commit
26caf3ed
authored
Mar 22, 2022
by
Félicie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
texts updated
parent
e0e9dc85
Pipeline
#1999
failed with stage
in 1 minute 27 seconds
Changes
4
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
2 deletions
+22
-2
members-space.css
members_space/static/css/members-space.css
+10
-0
members-space-faq.js
members_space/static/js/members-space-faq.js
+2
-0
members-space.js
members_space/static/js/members-space.js
+10
-2
faq.html
templates/members_space/faq.html
+0
-0
No files found.
members_space/static/css/members-space.css
View file @
26caf3ed
...
...
@@ -340,3 +340,13 @@ body {
.no_content_title
{
margin-bottom
:
1.5rem
;
}
/* - block_actions_for_attached_people is true or false */
.attached-blocked
{
display
:
none
;
}
.attached-unblocked
{
display
:
none
;
}
members_space/static/js/members-space-faq.js
View file @
26caf3ed
...
...
@@ -17,6 +17,8 @@ function init_faq() {
$
(
"#helper_unsubscribe_form_link_btn"
).
prop
(
"href"
,
helper_unsubscribe_form_link
);
$
(
"#request_form_link_btn2"
).
prop
(
"href"
,
request_form_link
);
$
(
"#request_form_link_btn"
).
prop
(
"href"
,
request_form_link
);
display_messages_for_attached_people
();
}
$
(
document
).
on
(
'click'
,
"#shift_exchange_btn"
,
()
=>
{
...
...
members_space/static/js/members-space.js
View file @
26caf3ed
...
...
@@ -350,4 +350,13 @@ $(document).ready(function() {
return
fn
?
this
.
bind
(
'resize'
,
debounce
(
fn
))
:
this
.
trigger
(
sr
);
};
})(
jQuery
,
'smartresize'
);
\ No newline at end of file
})(
jQuery
,
'smartresize'
);
function
display_messages_for_attached_people
()
{
if
(
block_actions_for_attached_people
===
"False"
)
{
$
(
".attached-unblocked"
).
show
();
}
else
{
$
(
".attached-blocked"
).
show
();
};
};
templates/members_space/faq.html
View file @
26caf3ed
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment