Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Widget Connector
overlayyoutube
_templatecom/atlassian/confluence/extra/widgetconnector/templates/youtube.vm
width400px
urlhttps://www.youtube.com/watch?v=y8lN5lHVZOc
height300px

Creation

  1. Open Settings >Templates

  2. ➕ Create a new template

  3. Select type “Dashboard page”

  4. Select your system language first (create translations later)

  5. Give it any name

  6. Add HTML (see code below)

  7. Save

  8. Reload the browser and find the dashboard as the first entry in Picturepark.

Deletion

  1. Open Settings >Templates

  2. Find pages of type “Dashboard page”

  3. Find the template in your system language (English or German)

  4. Select the template and delete 🗑 (you cannot restore deleted items)

  5. Reload the browser and find the dashboard as the first entry in Picturepark.

Modify Dashboard

You can modify the whole dashboard using HTML and CSS or work with the following predefined widgets.

...

Code Block
languagecss
.override-classes.cp-dashboard-card{
  // Override class cp-dashboard-card
}

.override-classes.cp-dashboard-card .link {
  // Override class link
}

.override-classes.cp-dashboard-card .image {
  // Override class image
}

.override-classes.cp-dashboard-card .title {
  // Override class title
}


Anchor
Guest-portal
Guest-portal
Guest Portal access

When using the Guest Portal feature, you can customize the text displayed when accessing the dashboard.

Usage Example

Code Block
{% if isAnonymousUser %}
      <p class="teaser-title">
        You are accessing the public area of this Picturepark <a href="{{loginUrl}}">Login</a> to get full access!
      </p>
{% endif %}