-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding JOGL links and data to activity pages
This is currently "hidden" with a feature flag.
- Loading branch information
Showing
12 changed files
with
351 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -224,6 +224,7 @@ | |
"is_academic_or_nonprofit": false, | ||
"contact_email": "[email protected]", | ||
"info_url": "http://jimihendrix.com", | ||
"jogl_page": "https://app.jogl.io/project/135", | ||
"short_description": "Really groovy music", | ||
"long_description": "Bork norps are coming!", | ||
"returned_data_description": "Lots of music", | ||
|
@@ -253,6 +254,7 @@ | |
"is_academic_or_nonprofit": false, | ||
"contact_email": "[email protected]", | ||
"info_url": "https://en.wikipedia.org/wiki/Trance_music", | ||
"jogl_page": "", | ||
"short_description": "List your five favorite trance tracks", | ||
"long_description": "Trance", | ||
"returned_data_description": "Lists of songs", | ||
|
@@ -282,6 +284,7 @@ | |
"is_academic_or_nonprofit": false, | ||
"contact_email": "[email protected]", | ||
"info_url": "http://www.example.com", | ||
"jogl_page": "", | ||
"short_description": "Some data", | ||
"long_description": "Some data, long description", | ||
"returned_data_description": "Stuff", | ||
|
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
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
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,5 @@ | ||
{% load static %} | ||
{% load utilities %} | ||
{# the "needs" panel on an activity page #} | ||
<div id="jogl-needs"> | ||
</div> |
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,5 @@ | ||
{% load static %} | ||
{% load utilities %} | ||
{# the "news" panel on an activity page #} | ||
<div id="jogl-news"> | ||
</div> |
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
"is_academic_or_nonprofit": true, | ||
"contact_email": "[email protected]", | ||
"info_url": "https://beaugunderson.com/", | ||
"jogl_page": "", | ||
"short_description": "abc", | ||
"long_description": "def", | ||
"active": true, | ||
|
@@ -47,6 +48,7 @@ | |
"is_academic_or_nonprofit": true, | ||
"contact_email": "[email protected]", | ||
"info_url": "https://beaugunderson.com/", | ||
"jogl_page": "https://app.jogl.io/project/135", | ||
"short_description": "def", | ||
"long_description": "ghk", | ||
"active": true, | ||
|
@@ -81,6 +83,7 @@ | |
"is_academic_or_nonprofit": true, | ||
"contact_email": "[email protected]", | ||
"info_url": "https://beaugunderson.com/", | ||
"jogl_page": "", | ||
"short_description": "abc3", | ||
"long_description": "def3", | ||
"active": true, | ||
|
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
18 changes: 18 additions & 0 deletions
18
private_sharing/migrations/0028_datarequestproject_jogl_page.py
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,18 @@ | ||
# Generated by Django 2.2.10 on 2020-07-16 22:52 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [("private_sharing", "0027_oauth2datarequestproject_webhook_secret")] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="datarequestproject", | ||
name="jogl_page", | ||
field=models.URLField( | ||
blank=True, help_text="JOGL project page URL (optional)" | ||
), | ||
) | ||
] |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.