{% extends "base.html" %} {% block title %}New Peer Request from {{ ds_email }}{% endblock %} {% block content %}

New Peer Request

A data scientist wants to connect with you to collaborate on data projects.

{% set info_items = [ {'label': 'From', 'value': ds_email}, {'label': 'Status', 'value': 'Pending', 'badge': 'pending'}, {'label': 'Action', 'value': 'Review request'} ] %} {% include 'components/info_box.html' %}

Once connected, this collaborator will be able to:

{% if peer_url %} {% set button_text = "Review Request" %} {% set button_url = peer_url %} {% include 'components/button.html' %} {% endif %}

Tip: You can add them back as a peer to establish mutual peering, enabling bidirectional collaboration.

{% endblock %}