How do I use the Training Services Portal as an admin? (2024)

Skip to main content

Learn about Community

Sign In

You're signed out

Sign in to ask questions, follow content, and engage with the Community

Sign In

'; hoverCardInner.innerHTML = loadingHTML.repeat(4); hoverCardContainer.classList.add('profile-hover-card-show'); // Extract information from the image element const titleField = avatar.getAttribute('title'); const userInfoUrl = `https://${mainURL}/api/2.0/search?q=SELECT first_name, last_name, login, view_href, rank, topics, solutions_authored, id, email FROM users WHERE login = '${titleField}'`; const userPostsUrl = `https://${mainURL}/api/2.0/search?q=SELECT count(*) FROM messages WHERE author.login = '${titleField}'`; const userSolutionsUrl = `https://${mainURL}/api/2.0/search?q=SELECT count(*) FROM messages WHERE author.login = '${titleField}' AND is_solution = true`; const userBadgesUrl = `https://${mainURL}/api/2.0/search?q=SELECT user_badges from users where login = '${titleField}'`; // Fetch user information async function createProfileData() { const userInfo = await fetch(userInfoUrl); const userPosts = await fetch(userPostsUrl); const userSolutions = await fetch(userSolutionsUrl); const userBadges = await fetch(userBadgesUrl); const userInfoData = await userInfo.json(); const userPostsData = await userPosts.json(); const userSolutionsData = await userSolutions.json(); const userBadgesData = await userBadges.json(); const userBadgesArray = userBadgesData.data.items[0].user_badges.items; const earnedBadgesArray = userBadgesArray.filter(badge => badge.earned_date); earnedBadgesArray.sort((a, b) => new Date(b.earned_date) - new Date(a.earned_date)); const userRankName = userInfoData.data.items[0].rank.name; const userID = userInfoData.data.items[0].id; // const userKudosUrl = `https://${mainURL}/restapi/vc/users/id/${userID}/metrics/name/net_kudos_events_received?restapi.response_format=json`; const userKudos = await fetch(userKudosUrl); const userKudosData = await userKudos.json(); let fullName = userInfoData.data.items[0].login; if (userInfoData.data.items[0].first_name !== undefined && userInfoData.data.items[0].last_name !== undefined) { let firstName = userInfoData.data.items[0].first_name; let lastName = userInfoData.data.items[0].last_name; fullName = firstName + " " + lastName; } else { fullName = userInfoData.data.items[0].login; } let userRankIcon = ""; if (userInfoData.data.items[0].rank.icon_left !== undefined) { userRankIcon = userInfoData.data.items[0].rank.icon_left; } else { userRankIcon = ""; } let userEmail = ""; // <#if user_has_role> if (userInfoData.data.items[0].email !== undefined) { userEmail = userInfoData.data.items[0].email; } else { userEmail = ""; } // <#else> userEmail = ""; // #if> const userViewHref = userInfoData.data.items[0].view_href; const userPostsCount = userPostsData.data.count; const userSolutionsCount = userSolutionsData.data.count; const userKudosCount = userKudosData.response.value.$; const userBadgesCount = earnedBadgesArray.length; let badgesHTML = ""; if (earnedBadgesArray.length === 0) { badgesHTML = `

This user hasn't earned any badges yet.

`; } else { for (let i = 0; i < earnedBadgesArray.length; i++) { const badgeName = earnedBadgesArray[i].badge.title; const badgeIcon = earnedBadgesArray[i].badge.icon_url; const badgeHTML = `

How do I use the Training Services Portal as an admin? (12)

`; badgesHTML += badgeHTML; if (i >= 4) { break; } }; } const hoverCardHTML = `

${fullName}

How do I use the Training Services Portal as an admin? (13)${userRankName}

${userEmail}

${badgesHTML}

${userPostsCount} posts ${userKudosCount} likes ${userSolutionsCount} solutions

`; // // Display the hover card return hoverCardHTML; } if (hoverCardInner.innerHTML.includes('loading-box')) { createProfileData().then((hoverCardHTML) => { hoverCardInner.innerHTML = hoverCardHTML; }); } } }); //Hide the hover card on mouseout avatar.addEventListener('mouseout', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.remove('profile-hover-card-show'); }); hoverCardInner.addEventListener('mouseout', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.remove('profile-hover-card-show'); }); hoverCardInner.addEventListener('mouseover', () => { const hoverCardContainer = avatar.nextElementSibling; hoverCardContainer.classList.add('profile-hover-card-show'); }); }); });

Turn on suggestions

Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.

Showing results for

Showonly | Search instead for

Did you mean:

  • Community
  • Canvas
  • Canvas LMS
  • Canvas Question Forum
  • How do I use the Training Services Portal as an ad...

`; const toolTip = document.createElement('div'); toolTip.classList.add('like-button-tooltip'); toolTip.innerHTML = toolTipCode; likeButton.appendChild(toolTip); } document.addEventListener('DOMContentLoaded', function () { const likeButton = document.querySelector('.lia-button-image-kudos'); const likeButtonLink = document.querySelector('.kudos-link'); let likeDismissCookie = localStorage.getItem("inst_comm_like_dismiss"); if (!likeDismissCookie) { localStorage.setItem("inst_comm_like_dismiss", "-1"); loginDate = -1; } if (likeDismissCookie !== "-1") { // toolTip.style.display = 'none'; const storedTime = new Date(parseInt(loginDate)); const currentTime = new Date(); if (storedTime.getTime() < currentTime.getTime()) { localStorage.setItem("inst_comm_like_dismiss", "-1"); } } else { createToolTip(likeButton, likeButtonLink); const toolTip = document.querySelector('.like-button-tooltip'); const toolTipClose = document.querySelector('.like-button-tooltip-close'); const observer = new IntersectionObserver(entries => { entries.forEach(entry => { if (entry.isIntersecting) { toolTip.style.display = 'block'; setTimeout(() => { toolTip.style.opacity = '1'; }, 2000); // toolTip.style.animationName = 'toolTipFlash'; // Stop observing once elementOne is visible observer.unobserve(likeButton); } }); }); // Start observing elementTwo observer.observe(likeButton); likeButtonLink.addEventListener('click', () => { toolTip.style.display = 'none'; }); if (toolTipClose) { toolTipClose.addEventListener("click", function () { const now = new Date(); const fourteenDays = new Date(now.getTime() + 14 * 24 * 60 * 60 * 1000); // Adding 24 hours in milliseconds const epochTime = fourteenDays.getTime(); // Getting the epoch time in milliseconds localStorage.setItem("inst_comm_like_dismiss", epochTime); toolTip.style.display = 'none'; }); } setTimeout(() => { toolTip.style.opacity = '0'; setTimeout(() => { toolTip.style.display = 'none'; }, 500); // Fade out duration (0.5 seconds) + delay (0.5 seconds) = 1 second }, 15000); // Hide after 10 seconds (including 2-second fade-in delay) } });

How do I use the Training Services Portal as an admin?

How do I use the Training Services Portal as an admin? (14)

How do I use the Training Services Portal as an admin? (15)jivedocs_unfede

Instructure

  • Mark as New
  • Bookmark
  • Subscribe
  • Mute
  • Subscribe to RSS Feed
  • Permalink
  • Print
  • Report Inappropriate Content

‎11-22-201904:00 PM

As an admin, you can access the Training Services Portal to complete self-paced training resources on a variety of Canvas topics. If your institution has a paid training subscription, you may also have access to live trainings and webinars.

The Training Services Portal is hosted in Bridge, a tool built and administered by Instructure. Learn more about using Bridge.

Notes:

  • The Training Services Portal is only available to admin-, instructor-, and designer-based roles or users without an assigned role.
  • The Training Services Portal is only available to institutions in North America. Canadian institutions should contact their Customer Success Manager for information on participation.
  • If the Training Services Portal link does not display in your Help menu, you must enable it in account settings.
  • For assistance with the Training Services Portal, message Canvas Subscription Training Support directly at learning.services@instructure.com.

Open Help Menu

How do I use the Training Services Portal as an admin? (16)

In the Canvas Global Navigation menu, click the Help link.

Note: Depending on your institution, the Help link name and icon may vary.

Open Training Services Portal

How do I use the Training Services Portal as an admin? (17)

Click the Training Services Portal link.

Notes:

  • The Training Services Portal is only available to admin-, instructor-, and designer-based roles or users without an assigned role
  • If the Training Services Portal link does not display in your Help menu, you must enable it in account settings.

Authorize Account

How do I use the Training Services Portal as an admin? (18)

To use the Training Services Portal, you must authorize Canvas [1] and Bridge [2] to have access to your account.

To authorize use of your account, click the Authorize button on both screens [3].

View Learning Library

How do I use the Training Services Portal as an admin? (19)

The Training Services Portal is hosted in Bridge, a tool built and administered by Instructure. By default, the Training Services Portal opens to the Learning Library [1]. Learn more about using the Learning Library.

  • Learning Pathways [2]: Collections of recommended courses based on user role. Certificates are provided upon completion at 80% accuracy. Learning pathways are organized in Bridge programs. Learn more about using programs.
  • Courses [3]: Information on a variety of Canvas topics. Badges are provided upon completion. Learn more about using courses.
  • Videos [4]: Pre-recorded video trainings available on demand. Videos are organized in Bridge courses.

View Admin Dashboard

How do I use the Training Services Portal as an admin? (20)

Depending on your configuration, the Training Services Portal may open to the Admin Dashboard. The Dashboard allows you to view all users in your institution that have accessed the training portal [1] and a list of learning item completion [2].

The completion report includes the user's name [3], email [4], the title of the learning unit [5], the amount of time expected to complete the unit [6], the enrollment type [7], and completion status [8].

Note: If you cannot view the Admin Dashboard, contact your Customer Success Manager.

Open Learning Item

How do I use the Training Services Portal as an admin? (21)

To begin a learning pathway, hover over the pathway's card and click the Start button [1]. To view a course or video, hover over the card for the item and click the Enroll button [2]. Learn more about enrolling in a course or learning pathway.

To view all learning items that you have enrolled in, click the My Learning tab [3]. Learn more about the My Learning page.

View Training Calendar

How do I use the Training Services Portal as an admin? (22)

To view the training calendar, click the Training Calendar tab [1]. The Training Calendar displays pre-scheduled live webinars delivered by Canvas trainers.

To register for a live training, click the name of the training [2] and click the Register button [3]. You will receive an email confirmation with a link to access the live training. Learn more about registering for a live training.

Notes:

  • Live trainings are only available to subscription clients.
  • All times in the training calendar display in Eastern time.

Previous Topic:How do I use the Canvas Welcome Tour as an admin?

Next Topic:How do I view grading schemes in an account?

You are here

Table of Contents > Global Navigation > How do I use the Training Services Portal as an admin?

Labels (3)

Labels

  • Labels:
  • Admin

  • Administrator

  • Canvas Admin

I also have this question

1Like

  • All forum topics
  • Previous Topic
  • Next Topic

0 Replies

How do I use the Training Services Portal as an admin? (23)

Unanswered Topics

  • Navigating grades with arrow keys

  • Unable to assign "submit" for graded discussion in...

  • Add canvas google meet lti1.3 to google calendar

  • Item Banks in a Master Course

  • After Action Report

View All

Latest Topics

  • Navigating grades with arrow keys

  • Unable to assign "submit" for graded discussion in...

  • Add canvas google meet lti1.3 to google calendar

  • Gradebook point goals that differ from total avail...

  • Item Banks in a Master Course

View All

View our top guides and resources:

Find My Canvas URL Help Logging into Canvas Generate a Pairing Code Canvas Browser and Computer Requirements Change Canvas Notification Settings Submit a Peer Review Assignment

To participate in the Instructure Community, you need to sign up or log in:

Sign In

How do I use the Training Services Portal as an admin? (2024)
Top Articles
Marucci CAT9 Connect Pastime -10 2-3/4" USSSA Baseball Bat (MSBCC910A) | JustBats.com
Marucci CAT9 Connect -10 2 3/4" USSSA Baseball Bat (MSBCC910) | JustBats.com
Craigslist Myrtle Beach Motorcycles For Sale By Owner
Star Wars Mongol Heleer
Express Pay Cspire
Drury Inn & Suites Bowling Green
Pixel Speedrun Unblocked 76
Dricxzyoki
Combat level
Alan Miller Jewelers Oregon Ohio
Get train & bus departures - Android
Gore Videos Uncensored
Call Follower Osrs
Wfin Local News
Elle Daily Horoscope Virgo
Nexus Crossword Puzzle Solver
Brutál jó vegán torta! – Kókusz-málna-csoki trió
Classic Lotto Payout Calculator
Teenleaks Discord
Aldi Süd Prospekt ᐅ Aktuelle Angebote online blättern
Lcwc 911 Live Incident List Live Status
Webcentral Cuny
We Discovered the Best Snow Cone Makers for Carnival-Worthy Desserts
Atdhe Net
The Largest Banks - ​​How to Transfer Money With Only Card Number and CVV (2024)
Gina Wilson All Things Algebra Unit 2 Homework 8
Living Shard Calamity
When Does Subway Open And Close
Rapv Springfield Ma
Bidevv Evansville In Online Liquid
Netwerk van %naam%, analyse van %nb_relaties% relaties
Avatar: The Way Of Water Showtimes Near Maya Pittsburg Cinemas
Timeline of the September 11 Attacks
2011 Hyundai Sonata 2 4 Serpentine Belt Diagram
Bj타리
Doctors of Optometry - Westchester Mall | Trusted Eye Doctors in White Plains, NY
Pixel Combat Unblocked
The Goonies Showtimes Near Marcus Rosemount Cinema
Frank Vascellaro
2487872771
Cbs Trade Value Chart Week 10
Cars And Trucks Facebook
Strange World Showtimes Near Atlas Cinemas Great Lakes Stadium 16
Texas Baseball Officially Releases 2023 Schedule
Vip Lounge Odu
Edict Of Force Poe
Uvalde Topic
Low Tide In Twilight Manga Chapter 53
15 Best Places to Visit in the Northeast During Summer
Waco.craigslist
Craigslist Cars And Trucks For Sale By Owner Indianapolis
Intuitive Astrology with Molly McCord
Latest Posts
Article information

Author: Dr. Pierre Goyette

Last Updated:

Views: 6362

Rating: 5 / 5 (70 voted)

Reviews: 93% of readers found this page helpful

Author information

Name: Dr. Pierre Goyette

Birthday: 1998-01-29

Address: Apt. 611 3357 Yong Plain, West Audra, IL 70053

Phone: +5819954278378

Job: Construction Director

Hobby: Embroidery, Creative writing, Shopping, Driving, Stand-up comedy, Coffee roasting, Scrapbooking

Introduction: My name is Dr. Pierre Goyette, I am a enchanting, powerful, jolly, rich, graceful, colorful, zany person who loves writing and wants to share my knowledge and understanding with you.