Skip to content

Commit 9aa29b2

Browse files
committed
upgrade bootstrap
1 parent 8bf7872 commit 9aa29b2

File tree

12 files changed

+13
-13
lines changed

12 files changed

+13
-13
lines changed

apimanager/apimanager/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
'django.contrib.sessions',
4545
'django.contrib.messages',
4646
'django.contrib.staticfiles',
47-
'bootstrap',
47+
'bootstrap4',
4848
'bootstrap_datepicker_plus',
4949
'mathfilters',
5050
'base',
@@ -301,7 +301,7 @@
301301
GATEWAYLOGIN_HAS_CBS = False
302302
ALLOW_GATEWAY_LOGIN = True
303303

304-
# Use BOOTSTRAP3 if you are using Bootstrap 3
304+
# Use bootstrap4 if you are using Bootstrap 3
305305
BOOTSTRAP4 = {
306306
'include_jquery': True,
307307
}

apimanager/customers/templates/customers/create.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
{% block page_title %}{{ block.super }} / {% trans "Customers" %}{% endblock page_title %}
66

77

8-
{% load bootstrap3 %}
8+
{% load bootstrap4 %}
99
{% block content %}
1010
<div id="customers">
1111
{% bootstrap_javascript jquery='full' %} {# Embed Bootstrap JS+jQuery #}

apimanager/metrics/templates/metrics/api.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
{% block extrajs %}
77
<script type="text/javascript" src="{% static 'metrics/js/lastEndpointMetric.js' %}"></script>
88
{% endblock extrajs %}
9-
{% load bootstrap3 %}
9+
{% load bootstrap4 %}
1010
{% block content %}
1111
<div id="metrics">
1212
{% bootstrap_javascript jquery='full' %} {# Embed Bootstrap JS+jQuery #}

apimanager/metrics/templates/metrics/connector.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{% load i18n %}
44

55
{% block page_title %}{{ block.super }} / Connector Metrics{% endblock page_title %}
6-
{% load bootstrap3 %}
6+
{% load bootstrap4 %}
77
{% block content %}
88
<div id="metrics">
99
{% bootstrap_javascript jquery='full' %} {# Embed Bootstrap JS+jQuery #}

apimanager/metrics/templates/metrics/custom_summary.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{% load static %}
33
{% load i18n %}
44
{% block page_title %}{{ block.super }} / API Usage Report{% endblock page_title %}
5-
{% load bootstrap3 %}
5+
{% load bootstrap4 %}
66
{% block content %}
77
<div id="metrics">
88
<h1>{% trans "API Usage Report" %}</h1>

apimanager/metrics/templates/metrics/daily_summary.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
{% block page_title %}{{ block.super }} / API Usage Report{% endblock page_title %}
77

8-
{% load bootstrap3 %}
8+
{% load bootstrap4 %}
99
{% block content %}
1010

1111
<div id="metrics">

apimanager/metrics/templates/metrics/hourly_summary.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
{% block page_title %}{{ block.super }} / API Usage Report{% endblock page_title %}
55

6-
{% load bootstrap3 %}
6+
{% load bootstrap4 %}
77
{% block content %}
88

99
<div id="metrics">

apimanager/metrics/templates/metrics/monthly_summary.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{% load static %}
33
{% load i18n %}
44
{% block page_title %}{{ block.super }} / API Usage Report{% endblock page_title %}
5-
{% load bootstrap3 %}
5+
{% load bootstrap4 %}
66
{% block content %}
77
<div id="metrics">
88
<h1>{% trans "API Usage Report" %}</h1>

apimanager/metrics/templates/metrics/quarterly_summary.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
{% block page_title %}{{ block.super }} / API Usage Report{% endblock page_title %}
66

7-
{% load bootstrap3 %}
7+
{% load bootstrap4 %}
88
{% block content %}
99

1010
<div id="metrics">

apimanager/metrics/templates/metrics/weekly_summary.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
{% block page_title %}{{ block.super }} / API Usage Report{% endblock page_title %}
66

7-
{% load bootstrap3 %}
7+
{% load bootstrap4 %}
88
{% block content %}
99

1010
<div id="metrics">

0 commit comments

Comments
 (0)