Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
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
0
Merge Requests
0
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
edx
edx-platform
Commits
003d8234
Commit
003d8234
authored
Jan 24, 2014
by
Frances Botsford
Committed by
Julia Hansbrough
Jan 31, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adjusting style and html for re-verification on lms
parent
bf210398
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
28 deletions
+48
-28
lms/static/sass/views/_verification.scss
+37
-11
lms/templates/verify_student/midcourse_reverify_dash.html
+11
-17
No files found.
lms/static/sass/views/_verification.scss
View file @
003d8234
...
...
@@ -1799,23 +1799,46 @@
&
.midcourse-reverification-process
{
// step-dash
.content-main
>
.title
{
@extend
%t-title7
;
display
:
block
;
font-weight
:
600
;
color
:
$m-gray
;
}
.action-reverify
{
@extend
%btn-verify-primary
;
//
@extend %btn-verify-primary;
padding
:
(
$baseline
/
2
)
(
$baseline
*
0
.75
);
}
.reverification-
table
{
width
:
100%
;
.reverification-
list
{
list-style-type
:
none
;
th
{
display
:
none
;
.item
{
display
:
inline-block
;
width
:
48%
;
box-shadow
:
0
2px
5px
2px
$shadow-l1
;
margin
:
(
$baseline
*.
75
)
(
$baseline
*.
75
)
(
$baseline
*.
75
)
0
;
border
:
1px
solid
$m-gray-t2
;
&
.complete
{
border
:
1px
solid
$verified-color-lvl1
;
}
&
.failed
{
border
:
1px
solid
$error-color
;
}
}
th
,
td
{
padding
:
(
$baseline
/
2
)
0
;
text-align
:
left
;
border-bottom
:
1px
solid
$light-gray
;
.course-info
{
margin-bottom
:
(
$baseline
/
2
);
padding
:
(
$baseline
/
2
)
(
$baseline
*.
75
);
}
.reverify-status
{
background-color
:
$light-gray
;
padding
:
(
$baseline
/
2
)
(
$baseline
*.
75
);
}
.course-name
{
...
...
@@ -1827,12 +1850,15 @@
.deadline
{
@extend
%copy-detail
;
display
:
block
;
margin-top
:
(
$baseline
/
4
);
}
}
.wrapper-reverification-help
{
margin-top
:
$baseline
*
2
;
margin-top
:
$baseline
;
border-top
:
1px
solid
$light-gray
;
padding-top
:
(
$baseline
*
1
.5
);
.faq-item
{
display
:
inline-block
;
...
...
lms/templates/verify_student/midcourse_reverify_dash.html
View file @
003d8234
...
...
@@ -14,35 +14,29 @@
<div
class=
"wrapper-content-main"
>
<article
class=
"content-main"
>
<h2
class=
"title"
>
You are
re-verifying your identity
</h2>
<h2
class=
"title"
>
You are
in the Verified track
</h2>
<div
class=
"copy"
>
<p>
You currently need to re-verify for the following course:
</p>
<table
class=
"reverification-table"
>
<tr>
<th>
Course and Reverification window
</th>
<th>
Status
</th>
</tr>
<ul
class=
"reverification-list"
>
% for course_id, course_name, course_number, date, status in reverify_course_data:
<
tr
>
<td
>
<span
class=
"course-name"
>
${course_name} (HKS211.1x)
</span
>
<span
class=
"deadline"
>
Re-verify by
<strong>
${date}
</strong></span
>
</td
>
<td>
<
li
class=
"item"
>
<div
class=
"course-info"
>
<h3
class=
"course-name"
>
${course_name} (${course_number})
</h3
>
<p
class=
"deadline"
>
Re-verify by
<strong>
${date}
</strong></p
>
</div
>
% if status == "must_reverify":
<
a
class=
"btn action-primary action-reverify"
href=
"${reverse('verify_student_midcourse_reverify', kwargs={'course_id': course_id})}"
>
Re-verify for HKS211.1x
</a
>
<
p
class=
"reverify-status"
><a
class=
"btn action-primary action-reverify"
href=
"${reverse('verify_student_midcourse_reverify', kwargs={'course_id': course_id})}"
>
Re-verify for ${course_number}
</a></p
>
% elif status == "completed":
Completed
% elif status == "failed":
Failed
% endif
</td>
</tr>
</li>
% endfor
</
table
>
</
ul
>
</div>
<div
class=
"wrapper-reverification-help list-faq"
>
...
...
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