Skip to content

Commit df25650

Browse files
committed
bootstrap3 -> django_bootstrap5
Only load the module, no other changes yet. - Legacy-Id: 19586
1 parent 50cec76 commit df25650

214 files changed

Lines changed: 357 additions & 358 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

ietf/dbtemplate/templates/dbtemplate/template_edit.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% extends "base.html" %}
22

3-
{% load bootstrap3 %}
3+
{% load django_bootstrap5 %}
44

55
{% block content %}
66
<h1>Template: {{ template }}</h1>

ietf/dbtemplate/templates/dbtemplate/template_show.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{% extends "base.html" %}
22

3-
{% load bootstrap3 %}
3+
{% load django_bootstrap5 %}
44

55
{% block content %}
66
<h1>Template: {{ template }}</h1>

ietf/doc/templatetags/ietf_filters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ def consensus(doc):
494494

495495
@register.filter
496496
def pos_to_label(text):
497-
"""Return a valid Bootstrap3 label type for a ballot position."""
497+
"""Return a valid Bootstrap label type for a ballot position."""
498498
return {
499499
'Yes': 'success',
500500
'No Objection': 'pass',

ietf/secr/templates/meetings/rooms.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "meetings/base_rooms_times.html" %}
2-
{% load bootstrap3 %}
2+
{% load django_bootstrap5 %}
33

44
{% block subsection %}
55

ietf/secr/templates/meetings/sessions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{% extends "meetings/base_rooms_times.html" %}
2-
{% load bootstrap3 %}
2+
{% load django_bootstrap5 %}
33

44
{% block subsection %}
55

ietf/templates/community/manage_list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends "base.html" %}
22
{# Copyright The IETF Trust 2015, All Rights Reserved #}
33
{% load origin %}
4-
{% load bootstrap3 %}
4+
{% load django_bootstrap5 %}
55
{% load static %}
66
{% load misc_filters %}
77

ietf/templates/community/subscription.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
{# Copyright The IETF Trust 2015, All Rights Reserved #}
33
{% load origin %}
44

5-
{% load bootstrap3 %}
5+
{% load django_bootstrap5 %}
66

77
{% block title %}Subscription to {{ clist.long_name }}{% endblock %}
88

ietf/templates/community/track_document.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{# Copyright The IETF Trust 2015, All Rights Reserved #}
22
{% load origin %}{% origin %}
3-
{% load bootstrap3 %}
3+
{% load django_bootstrap5 %}
44

55
{% block title %}Track document {{ name }}{% endblock %}
66

ietf/templates/community/untrack_document.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{# Copyright The IETF Trust 2015, All Rights Reserved #}
22
{% load origin %}{% origin %}
3-
{% load bootstrap3 %}
3+
{% load django_bootstrap5 %}
44

55
{% block title %}Remove tracking of document {{ name }}{% endblock %}
66

ietf/templates/community/view_list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{% extends "base.html" %}
22
{# Copyright The IETF Trust 2015, All Rights Reserved #}
33
{% load origin %}
4-
{% load bootstrap3 %}
4+
{% load django_bootstrap5 %}
55

66
{% block title %}{{ clist.long_name }}{% endblock %}
77

0 commit comments

Comments
 (0)