Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
edx-platform-release
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
Hsin-Yu Chien
edx-platform-release
Commits
25b0264a
Commit
25b0264a
authored
9 years ago
by
Marco Morales
Browse files
Options
Downloads
Plain Diff
Merge pull request #7730 from edx/marco/fix/course-refund-via-unenroll
Still show dropdown actions even if course isn't accessible.
parents
4027ca1f
c67e8b9e
Loading
Loading
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lms/templates/dashboard/_dashboard_course_listing.html
+103
-104
103 additions, 104 deletions
lms/templates/dashboard/_dashboard_course_listing.html
with
103 additions
and
104 deletions
lms/templates/dashboard/_dashboard_course_listing.html
+
103
−
104
View file @
25b0264a
...
...
@@ -99,9 +99,9 @@ from student.helpers import (
% endif
</span>
</div>
% if show_courseware_link:
<div
class=
"
wrapper-
course-actions"
>
<div
class=
"course-actions"
>
<div
class=
"wrapper-course-actions"
>
<div
class=
"course-actions"
>
% if show_courseware_link:
% if course.has_ended():
% if not is_course_blocked:
<a
href=
"${course_target}"
class=
"enter-course archived"
>
${_('View Archived Course')}
<span
class=
"sr"
>
${course.display_name_with_default}
</span></a>
...
...
@@ -161,113 +161,112 @@ from student.helpers import (
</a>
% endif
% endif
<div
class=
"wrapper-action-more"
>
<a
href=
"#actions-dropdown-${dashboard_index}"
class=
"action action-more"
id=
"actions-dropdown-link-${dashboard_index}"
aria-haspopup=
"true"
aria-expanded=
"false"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
>
<span
class=
"sr"
>
${_('Course options dropdown')}
</span>
<i
class=
"fa fa-cog"
aria-hidden=
"true"
></i>
</a>
<div
class=
"actions-dropdown"
id=
"actions-dropdown-${dashboard_index}"
aria-label=
"${_('Additional Actions Menu')}"
>
<ul
class=
"actions-dropdown-list"
id=
"actions-dropdown-list-${dashboard_index}"
aria-label=
"${_('Available Actions')}"
role=
"menu"
>
<li
class=
"actions-item"
id=
"actions-item-unenroll-${dashboard_index}"
>
% if is_paid_course and show_refund_option:
## Translators: The course name will be added to the end of this sentence.
% if not is_course_blocked:
<a
href=
"#unenroll-modal"
class=
"action action-unenroll"
rel=
"leanModal"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message('${_("
Are
you
sure
you
want
to
unenroll
from
the
purchased
course
%(
course_number
)
s
?")}',
'${
_
("
You
will
be
refunded
the
amount
you
paid.
")}')"
>
${_('Unenroll')}
</a>
% else:
<a
class=
"action action-unenroll is-disabled"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message('${_("
Are
you
sure
you
want
to
unenroll
from
the
purchased
course
%(
course_number
)
s
?")}',
'${
_
("
You
will
be
refunded
the
amount
you
paid.
")}')"
>
${_('Unenroll')}
</a>
% endif
% elif is_paid_course and not show_refund_option:
## Translators: The course's name will be added to the end of this sentence.
% if not is_course_blocked:
<a
href=
"#unenroll-modal"
class=
"action action-unenroll"
rel=
"leanModal"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message('${_("
Are
you
sure
you
want
to
unenroll
from
the
purchased
course
%(
course_number
)
s
?")}',
'${
_
("
You
will
not
be
refunded
the
amount
you
paid.
")}')"
>
${_('Unenroll')}
</a>
% else:
<a
class=
"action action-unenroll is-disabled"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message('${_("
Are
you
sure
you
want
to
unenroll
from
the
purchased
course
%(
course_number
)
s
?")}',
'${
_
("
You
will
not
be
refunded
the
amount
you
paid.
")}')"
>
${_('Unenroll')}
</a>
% endif
% elif enrollment.mode != "verified":
## Translators: The course's name will be added to the end of this sentence.
% if not is_course_blocked:
<a
href=
"#unenroll-modal"
class=
"action action-unenroll"
rel=
"leanModal"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message('${_("
Are
you
sure
you
want
to
unenroll
from
%(
course_number
)
s
?")}',
'')"
>
${_('Unenroll')}
</a>
% else:
<a
class=
"action action-unenroll is-disabled"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message('${_("
Are
you
sure
you
want
to
unenroll
from
%(
course_number
)
s
?")}',
'')"
>
${_('Unenroll')}
</a>
% endif
% elif show_refund_option:
## Translators: The course's name will be added to the end of this sentence.
% if not is_course_blocked:
<a
href=
"#unenroll-modal"
class=
"action action-unenroll"
rel=
"leanModal"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message(
'${_("
Are
you
sure
you
want
to
unenroll
from
the
verified
{
cert_name_long
}
track
of
%(
course_number
)
s
?"
).format(cert_name_long=
cert_name_long)}',
'${
_
("
You
will
be
refunded
the
amount
you
paid.
")}'
)"
>
${_('Unenroll')}
</a>
% else:
<a
class=
"action action-unenroll is-disabled"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message(
'${_("
Are
you
sure
you
want
to
unenroll
from
the
verified
{
cert_name_long
}
track
of
%(
course_number
)
s
?"
).format(cert_name_long=
cert_name_long)}',
'${
_
("
You
will
be
refunded
the
amount
you
paid.
")}'
)"
>
${_('Unenroll')}
</a>
% endif
% endif
<div
class=
"wrapper-action-more"
>
<a
href=
"#actions-dropdown-${dashboard_index}"
class=
"action action-more"
id=
"actions-dropdown-link-${dashboard_index}"
aria-haspopup=
"true"
aria-expanded=
"false"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
>
<span
class=
"sr"
>
${_('Course options dropdown')}
</span>
<i
class=
"fa fa-cog"
aria-hidden=
"true"
></i>
</a>
<div
class=
"actions-dropdown"
id=
"actions-dropdown-${dashboard_index}"
aria-label=
"${_('Additional Actions Menu')}"
>
<ul
class=
"actions-dropdown-list"
id=
"actions-dropdown-list-${dashboard_index}"
aria-label=
"${_('Available Actions')}"
role=
"menu"
>
<li
class=
"actions-item"
id=
"actions-item-unenroll-${dashboard_index}"
>
% if is_paid_course and show_refund_option:
## Translators: The course name will be added to the end of this sentence.
% if not is_course_blocked:
<a
href=
"#unenroll-modal"
class=
"action action-unenroll"
rel=
"leanModal"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message('${_("
Are
you
sure
you
want
to
unenroll
from
the
purchased
course
%(
course_number
)
s
?")}',
'${
_
("
You
will
be
refunded
the
amount
you
paid.
")}')"
>
${_('Unenroll')}
</a>
% else:
<a
class=
"action action-unenroll is-disabled"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message('${_("
Are
you
sure
you
want
to
unenroll
from
the
purchased
course
%(
course_number
)
s
?")}',
'${
_
("
You
will
be
refunded
the
amount
you
paid.
")}')"
>
${_('Unenroll')}
</a>
% endif
% elif is_paid_course and not show_refund_option:
## Translators: The course's name will be added to the end of this sentence.
% if not is_course_blocked:
<a
href=
"#unenroll-modal"
class=
"action action-unenroll"
rel=
"leanModal"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message('${_("
Are
you
sure
you
want
to
unenroll
from
the
purchased
course
%(
course_number
)
s
?")}',
'${
_
("
You
will
not
be
refunded
the
amount
you
paid.
")}')"
>
${_('Unenroll')}
</a>
% else:
## Translators: The course's name will be added to the end of this sentence.
% if not is_course_blocked:
<a
href=
"#unenroll-modal"
class=
"action action-unenroll"
rel=
"leanModal"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message(
'${_("
Are
you
sure
you
want
to
unenroll
from
the
verified
{
cert_name_long
}
track
of
%(
course_number
)
s
?"
).format(cert_name_long=
cert_name_long)}',
'${
_
("
The
refund
deadline
for
this
course
has
passed
,
so
you
will
not
receive
a
refund.
")}'
)"
>
${_('Unenroll')}
</a>
% else:
<a
class=
"action action-unenroll is-disabled"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message(
'${_("
Are
you
sure
you
want
to
unenroll
from
the
verified
{
cert_name_long
}
track
of
%(
course_number
)
s
?"
).format(cert_name_long=
cert_name_long)}',
'${
_
("
The
refund
deadline
for
this
course
has
passed
,
so
you
will
not
receive
a
refund.
")}'
)"
>
${_('Unenroll')}
</a>
% endif
<a
class=
"action action-unenroll is-disabled"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message('${_("
Are
you
sure
you
want
to
unenroll
from
the
purchased
course
%(
course_number
)
s
?")}',
'${
_
("
You
will
not
be
refunded
the
amount
you
paid.
")}')"
>
${_('Unenroll')}
</a>
% endif
</li>
<li
class=
"actions-item"
id=
"actions-item-email-settings-${dashboard_index}"
>
% if show_email_settings:
% if not is_course_blocked:
<a
href=
"#email-settings-modal"
class=
"action action-email-settings"
rel=
"leanModal"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
data-optout=
"${unicode(course.id) in course_optouts}"
>
${_('Email Settings')}
</a>
% else:
<a
class=
"action action-email-settings is-disabled"
data-course-id=
"${course.id| h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
data-optout=
"${unicode(course.id) in course_optouts}"
>
${_('Email Settings')}
</a>
% endif
% elif enrollment.mode != "verified":
## Translators: The course's name will be added to the end of this sentence.
% if not is_course_blocked:
<a
href=
"#unenroll-modal"
class=
"action action-unenroll"
rel=
"leanModal"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message('${_("
Are
you
sure
you
want
to
unenroll
from
%(
course_number
)
s
?")}',
'')"
>
${_('Unenroll')}
</a>
% else:
<a
class=
"action action-unenroll is-disabled"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message('${_("
Are
you
sure
you
want
to
unenroll
from
%(
course_number
)
s
?")}',
'')"
>
${_('Unenroll')}
</a>
% endif
% elif show_refund_option:
## Translators: The course's name will be added to the end of this sentence.
% if not is_course_blocked:
<a
href=
"#unenroll-modal"
class=
"action action-unenroll"
rel=
"leanModal"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message(
'${_("
Are
you
sure
you
want
to
unenroll
from
the
verified
{
cert_name_long
}
track
of
%(
course_number
)
s
?"
).format(cert_name_long=
cert_name_long)}',
'${
_
("
You
will
be
refunded
the
amount
you
paid.
")}'
)"
>
${_('Unenroll')}
</a>
% else:
<a
class=
"action action-unenroll is-disabled"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message(
'${_("
Are
you
sure
you
want
to
unenroll
from
the
verified
{
cert_name_long
}
track
of
%(
course_number
)
s
?"
).format(cert_name_long=
cert_name_long)}',
'${
_
("
You
will
be
refunded
the
amount
you
paid.
")}'
)"
>
${_('Unenroll')}
</a>
% endif
</li>
</ul>
</div>
% else:
## Translators: The course's name will be added to the end of this sentence.
% if not is_course_blocked:
<a
href=
"#unenroll-modal"
class=
"action action-unenroll"
rel=
"leanModal"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message(
'${_("
Are
you
sure
you
want
to
unenroll
from
the
verified
{
cert_name_long
}
track
of
%(
course_number
)
s
?"
).format(cert_name_long=
cert_name_long)}',
'${
_
("
The
refund
deadline
for
this
course
has
passed
,
so
you
will
not
receive
a
refund.
")}'
)"
>
${_('Unenroll')}
</a>
% else:
<a
class=
"action action-unenroll is-disabled"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
onclick=
"set_unenroll_message(
'${_("
Are
you
sure
you
want
to
unenroll
from
the
verified
{
cert_name_long
}
track
of
%(
course_number
)
s
?"
).format(cert_name_long=
cert_name_long)}',
'${
_
("
The
refund
deadline
for
this
course
has
passed
,
so
you
will
not
receive
a
refund.
")}'
)"
>
${_('Unenroll')}
</a>
% endif
% endif
</li>
<li
class=
"actions-item"
id=
"actions-item-email-settings-${dashboard_index}"
>
% if show_email_settings:
% if not is_course_blocked:
<a
href=
"#email-settings-modal"
class=
"action action-email-settings"
rel=
"leanModal"
data-course-id=
"${course.id | h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
data-optout=
"${unicode(course.id) in course_optouts}"
>
${_('Email Settings')}
</a>
% else:
<a
class=
"action action-email-settings is-disabled"
data-course-id=
"${course.id| h}"
data-course-number=
"${course.number | h}"
data-dashboard-index=
"${dashboard_index}"
data-optout=
"${unicode(course.id) in course_optouts}"
>
${_('Email Settings')}
</a>
% endif
% endif
</li>
</ul>
</div>
</div>
</div>
% endif
</div>
</div>
</section>
<footer
class=
"wrapper-messages-primary"
>
...
...
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