-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add custom text to exchange workspace template
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38 changes: 38 additions & 0 deletions
38
gregor_django/templates/gregor_anvil/exchangeworkspace_list.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
{% extends "anvil_consortium_manager/base.html" %} | ||
{% load static %} | ||
|
||
{% load render_table from django_tables2 %} | ||
{% load crispy_forms_tags %} | ||
|
||
{% block title %}{{workspace_type_display_name}}s{% endblock %} | ||
|
||
{% block content %} | ||
|
||
<div class="row"> | ||
<div class="col-sm-12"> | ||
|
||
<h2>{{workspace_type_display_name}}s</h2> | ||
|
||
<div> | ||
<p> | ||
This page lists workspaces that facilitate data exchange between the Data Coordinating Center and a Research Center (RC) independent of the upload cycle. | ||
Each exchange workspace is only accessible to the RC's members who are approved by their PI approved for uploader and/or reader access. | ||
</p> | ||
<p> | ||
Learn more about <a href="https://gregorconsortium.org/members/research-home/gregor-consortium-data#accessing-consortium-data">Accessing Consortium Data</a>. | ||
</p> | ||
|
||
</div> | ||
|
||
<div class="container pt-3"> | ||
{% crispy filter.form %} | ||
</div> | ||
|
||
{% render_table table %} | ||
|
||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
{% endblock content %} |