Skip to content

Commit e34773a

Browse files
committed
Merge branch 'master' of https://github.com/ImagingDataCommons/IDC-WebApp into idc-test
2 parents 4d89972 + 3effa0a commit e34773a

20 files changed

Lines changed: 81 additions & 9 deletions

idc/urls.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131

3232
re_path(r'^$', views.landing_page, name='landing_page'),
3333
re_path(r'^quota/$', views.quota_page, name='quota_page'),
34+
re_path(r'^quota/index.html$', views.quota_page, name='quota_page_index'),
3435
re_path(r'^users/(?P<user_id>\d+)/$', views.user_detail, name='user_detail'),
3536
re_path(r'^users/api/', views_api.user_detail, name='user_detail_api'),
3637

static/css/bootstrap-idc.css

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,25 @@
102102
.doi-list.ar-collex-set {
103103
margin-left: var(--fa-li-margin,0.75em);
104104
margin-bottom: 1em;
105+
}
106+
107+
.quota-card {
108+
margin-top: 100px;
109+
}
110+
111+
.quota-card .card-header {
112+
background: #d98033;
113+
color: #fff;
114+
font-family: system-ui;
115+
}
116+
117+
.quota-details {
118+
height: 80vh;
119+
min-height: 500px;
120+
font-size: large;
121+
font-family: system-ui;
122+
}
123+
124+
.quota-details a {
125+
font-weight: bold;
105126
}

static/js/bq-string.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
require.config({
2020
baseUrl: STATIC_FILES_URL + 'js/',
21+
urlArgs: "v="+APP_VERSION,
2122
paths: {
2223
jquery: 'libs/jquery-3.7.1.min',
2324
base: 'base',

static/js/cart_page.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
*/
1818
require.config({
1919
baseUrl: STATIC_FILES_URL + 'js/',
20+
urlArgs: "v="+APP_VERSION,
2021
paths: {
2122
jquery: 'libs/jquery-3.7.1.min',
2223
bootstrap: 'libs/bootstrap.min',

static/js/citations_modal.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
require.config({
2020
baseUrl: STATIC_FILES_URL + 'js/',
21+
urlArgs: "v="+APP_VERSION,
2122
paths: {
2223
jquery: 'libs/jquery-3.7.1.min',
2324
bootstrap: 'libs/bootstrap.min',

static/js/cohorts/cohort-details.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
require.config({
2020
baseUrl: STATIC_FILES_URL + 'js/',
21+
urlArgs: "v="+APP_VERSION,
2122
paths: {
2223
jquery: 'libs/jquery-3.7.1.min',
2324
bootstrap: 'libs/bootstrap.min',

static/js/cohorts/export-manifest.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818

1919
require.config({
2020
baseUrl: STATIC_FILES_URL + 'js/',
21+
urlArgs: "v="+APP_VERSION,
2122
paths: {
2223
jquery: 'libs/jquery-3.7.1.min',
2324
bootstrap: 'libs/bootstrap.min',

static/js/collection_details.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
require.config({
22
baseUrl: STATIC_FILES_URL + 'js/',
3+
urlArgs: "v="+APP_VERSION,
34
paths: {
45
jquery: 'libs/jquery-3.7.1.min',
56
bootstrap: 'libs/bootstrap.min',

static/js/collections_list.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
require.config({
22
baseUrl: STATIC_FILES_URL + 'js/',
3+
urlArgs: "v="+APP_VERSION,
34
paths: {
45
jquery: 'libs/jquery-3.7.1.min',
56
bootstrap: 'libs/bootstrap.min',

static/js/dashboard.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
require.config({
22
baseUrl: STATIC_FILES_URL + 'js/',
3+
urlArgs: "v="+APP_VERSION,
34
paths: {
45
jquery: 'libs/jquery-3.7.1.min',
56
bootstrap: 'libs/bootstrap.min',

0 commit comments

Comments
 (0)