Skip to content

Commit fd09677

Browse files
authored
Merge pull request #765 from uw-it-aca/hlee2/vs-summer
Hlee2/vs summer
2 parents 149920f + 1eef7bc commit fd09677

File tree

7 files changed

+19
-9
lines changed

7 files changed

+19
-9
lines changed

myuw/data/category_links_import.csv

+2-1
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ Events & Activities,Stay Connected,all,,,http://instagram.com/uofwa,UW Instagram
7676
Events & Activities,Stay Connected,all,,,http://twitter.com/UW,UW Twitter,http://twitter.com/UWBothell,UW Bothell Twitter,,,no
7777
Events & Activities,Stay Connected,all,,,http://www.linkedin.com/company/university-of-washington,UW LinkedIn,https://www.linkedin.com/groups/University-Washington-Bothell-92858?home=&gid=92858,UW Bothell LinkedIn,,,no
7878
Employment,,all,,,http://careers.washington.edu/,Career Center,http://www.bothell.washington.edu/careers,Career Services,http://www.tacoma.uw.edu/career-development/career-development-education,Career Development,no
79-
Employment,,all,https://www.washington.edu/ess/,Employee Self-Service (ESS),,,,,,,yes
79+
Employment,,all,https://wd5.myworkday.com/uw/d/home.htmld,Workday,,,,,,,yes
80+
Employment,,all,https://prp.admin.uw.edu/legacyess,Legacy ESS,,,,,,,yes
8081
Employment,,all,https://careers.uw.edu/jobs/,Career and Internship Center,,,,,,,yes
8182
Employment,,all,http://www.lib.washington.edu/about/employment/students,Student Employment in the Libraries,,,,,,,no
8283
Employment,,all,http://www.huskyjobs.washington.edu/students,Husky Jobs,,,,,,,no

myuw/data/quicklinks.csv

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ http://canvas.uw.edu/,Canvas LMS,,student,
44
https://myplan.uw.edu,MyPlan,,student,
55
https://sdb.admin.uw.edu/sisStudents/uwnetid/grades.aspx,Grade Report,,student,
66
http://www.washington.edu/home/peopledir/,Faculty/Staff/Student Directory,,employee,
7-
https://prp.admin.uw.edu/LegacyESS/,Employee Self-Service (ESS),,employee,
7+
https://wd5.myworkday.com/uw/d/home.htmld,Workday,,employee,
88
https://sdb.admin.uw.edu/students/uwnetid/register.asp,Register using SLN codes,,student,
99
https://sdb.admin.uw.edu/sisStudents/uwnetid/finaidstatus.aspx,Financial Aid Status,,student,
1010
http://www.uwb.edu/students/registration/time/index.xhtml,Time Schedule - Bothell,bothell,student,

myuw/static/css/mobile.less

+7-1
Original file line numberDiff line numberDiff line change
@@ -1774,7 +1774,13 @@ label { font-weight: normal; }
17741774

17751775
ul { list-style: none; padding-left: 0; }
17761776
}
1777-
1777+
// Visual schedule: text above the grid
1778+
.summer-dates {
1779+
font-size:.85em;
1780+
color: #555;
1781+
margin-bottom: 1.25em;
1782+
}
1783+
17781784
// visual schedule-period control
17791785
.schedule-period-module {
17801786
margin-bottom: 1em;

myuw/templates/base.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ <h2 id="categories" class="sr-only">Categorized Resources</h2>
224224
</li>
225225
<li class="pull-left">
226226
<a href="/resource/employment" class="navigation-item hover"><span class="navigation-item-text">Employment</span>
227-
<div class="subcategories">Career Center, Husky Jobs, Employee Self-Service&#8230;</div></a>
227+
<div class="subcategories">Career Center, Husky Jobs, Workday&#8230;</div></a>
228228
</li>
229229
</ul>
230230
</div>

myuw/templates/handlebars/card/emp_fac_student.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ <h3 class="sr-only">Student Employee or Faculty</h3>
88
<!-- if employee -->
99
{{#if is_employee}}
1010
<h3>Student Employees</h3>
11-
<p>A link to Employee Self-Services (ESS) is on the <a href="/resource/employment">Employment page</a>, but you can also use the <a href="https://myuw.washington.edu/servlet/user?tab=7" target="_blank">old version of MyUW</a> to access additional employment resources.</p>
11+
<p>A link to Workday is on the <a href="/resource/employment">Employment page</a>, but you can also use the <a href="https://myuw.washington.edu/servlet/user?tab=7" target="_blank">old version of MyUW</a> to access additional employment resources.</p>
1212
{{/if}}
1313
<!-- /if employee -->
1414

myuw/templates/handlebars/card/schedule/visual.html

+5-2
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ <h3 class="sr-only">Your {{ucfirst quarter}} {{year}} final exam</h3>
4747
<h3 id="quarter-info" aria-hidden="true">
4848
{{ucfirst quarter}} {{year}} Schedule
4949
{{#if summer_term}}
50-
<span class="shortTitle">{{summer_term}}</span>
50+
<span class="shortTitle">{{summer_term}}</span>
5151
{{/if}}
5252
</h3>
5353
<div id="schedule-tabs" class="schedule-period-module">
@@ -57,8 +57,11 @@ <h3 id="quarter-info" aria-hidden="true">
5757
{{ /each }}
5858
</ul>
5959
</div>
60+
<div>{{#if summer_term}}
61+
<p class="summer-dates"><strong>A-term classes end Jul 19</strong> and <strong>B-term classes begin Jul 20</strong>. </p>
62+
{{/if}}
63+
</div>
6064
<div id="schedule_area">
61-
6265
{{#if display_hours }}
6366
<!-- week view -->
6467
<div class="visual-schedule {{schedule_hours_class}}" aria-hidden="true">

myuw/test/dao/category_links.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88

99
class TestCategoryLinks(TestCase):
1010

11-
def test_get_all_likes(self):
11+
def test_get_all_links(self):
1212
all_links = Res_Links.get_all_links()
13-
self.assertEquals(len(all_links), 155)
13+
self.assertEquals(len(all_links), 156)
1414
val = URLValidator()
1515
for link in all_links:
1616
try:

0 commit comments

Comments
 (0)