nautobot 2.4.18__py3-none-any.whl → 2.4.19__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nautobot might be problematic. Click here for more details.
- nautobot/apps/ui.py +6 -0
- nautobot/circuits/tables.py +1 -1
- nautobot/circuits/templates/circuits/circuit_create.html +7 -7
- nautobot/circuits/templates/circuits/circuit_retrieve.html +1 -5
- nautobot/circuits/templates/circuits/circuittermination_create.html +26 -26
- nautobot/circuits/templates/circuits/inc/circuit_termination.html +20 -20
- nautobot/circuits/templates/circuits/inc/circuit_termination_header_extra_content.html +3 -3
- nautobot/circuits/templates/circuits/inc/circuit_termination_speed_fragment.html +7 -7
- nautobot/circuits/templates/circuits/providernetwork_retrieve.html +1 -3
- nautobot/circuits/views.py +26 -9
- nautobot/cloud/templates/cloud/cloudaccount_retrieve.html +1 -4
- nautobot/cloud/templates/cloud/cloudnetwork_retrieve.html +1 -7
- nautobot/cloud/templates/cloud/cloudresourcetype_retrieve.html +1 -3
- nautobot/cloud/templates/cloud/cloudservice_retrieve.html +1 -5
- nautobot/cloud/views.py +45 -0
- nautobot/core/graphql/generators.py +5 -2
- nautobot/core/jobs/bulk_actions.py +48 -85
- nautobot/core/models/querysets.py +2 -1
- nautobot/core/templates/40x.html +15 -15
- nautobot/core/templates/500.html +21 -21
- nautobot/core/templates/admin/app_index.html +8 -8
- nautobot/core/templates/admin/base.html +104 -104
- nautobot/core/templates/admin/change_form.html +65 -65
- nautobot/core/templates/admin/change_list.html +60 -60
- nautobot/core/templates/admin/change_list_results.html +39 -39
- nautobot/core/templates/admin/config/config.html +47 -47
- nautobot/core/templates/admin/delete_confirmation.html +47 -47
- nautobot/core/templates/admin/edit_inline/stacked.html +124 -124
- nautobot/core/templates/admin/edit_inline/tabular.html +60 -60
- nautobot/core/templates/admin/includes/fieldset.html +4 -4
- nautobot/core/templates/admin/index.html +60 -60
- nautobot/core/templates/admin/prepopulated_fields_js.html +18 -18
- nautobot/core/templates/admin/submit_line.html +4 -4
- nautobot/core/templates/base_django.html +46 -46
- nautobot/core/templates/buttons/consolidated_bulk_action_buttons.html +8 -8
- nautobot/core/templates/buttons/consolidated_detail_view_action_buttons.html +8 -8
- nautobot/core/templates/buttons/export.html +3 -3
- nautobot/core/templates/components/breadcrumbs.html +5 -5
- nautobot/core/templates/components/button/default.html +3 -3
- nautobot/core/templates/components/button/dropdown.html +7 -7
- nautobot/core/templates/components/button/formbutton.html +4 -4
- nautobot/core/templates/components/panel/body_content_data_table.html +1 -1
- nautobot/core/templates/components/panel/body_wrapper_generic_table.html +3 -0
- nautobot/core/templates/components/panel/footer_content_table.html +3 -1
- nautobot/core/templates/components/panel/header_extra_content_table.html +10 -1
- nautobot/core/templates/components/tab/content_wrapper.html +1 -1
- nautobot/core/templates/components/tab/label_wrapper.html +1 -1
- nautobot/core/templates/components/tab/label_wrapper_distinct_view.html +10 -3
- nautobot/core/templates/generic/object_bulk_add_component.html +40 -40
- nautobot/core/templates/generic/object_bulk_create.html +3 -3
- nautobot/core/templates/generic/object_bulk_destroy.html +6 -6
- nautobot/core/templates/generic/object_bulk_update.html +52 -52
- nautobot/core/templates/generic/object_import.html +33 -33
- nautobot/core/templates/generic/object_list.html +267 -267
- nautobot/core/templates/generic/object_retrieve.html +261 -261
- nautobot/core/templates/graphene/graphiql.html +127 -127
- nautobot/core/templates/home.html +62 -62
- nautobot/core/templates/inc/computed_fields/panel_data.html +13 -13
- nautobot/core/templates/inc/created_updated.html +8 -8
- nautobot/core/templates/inc/custom_fields/panel_data.html +13 -13
- nautobot/core/templates/inc/dynamic_groups_panel.html +11 -11
- nautobot/core/templates/inc/footer.html +19 -19
- nautobot/core/templates/inc/javascript.html +1 -1
- nautobot/core/templates/inc/media.html +46 -46
- nautobot/core/templates/inc/nav_menu.html +1 -1
- nautobot/core/templates/inc/relationships_table_rows.html +22 -22
- nautobot/core/templates/inc/tenant_table_row.html +1 -1
- nautobot/core/templates/login.html +77 -77
- nautobot/core/templates/media_failure.html +38 -38
- nautobot/core/templates/panel_table.html +1 -1
- nautobot/core/templates/rest_framework/api.html +3 -3
- nautobot/core/templates/search.html +1 -1
- nautobot/core/templates/swagger_ui.html +9 -9
- nautobot/core/templates/utilities/confirmation_form.html +18 -18
- nautobot/core/templates/utilities/render_field.html +1 -1
- nautobot/core/templates/utilities/render_jinja2.html +43 -43
- nautobot/core/templates/utilities/templatetags/filter_form_modal.html +56 -56
- nautobot/core/templates/utilities/templatetags/utilization_graph.html +1 -1
- nautobot/core/templates/utilities/theme_preview.html +799 -799
- nautobot/core/templates/utilities/worker_status.html +122 -122
- nautobot/core/templates/widgets/clearable_file.html +3 -3
- nautobot/core/templates/widgets/sluginput.html +1 -1
- nautobot/core/templatetags/buttons.py +8 -2
- nautobot/core/templatetags/helpers.py +1 -1
- nautobot/core/testing/integration.py +7 -4
- nautobot/core/testing/views.py +24 -5
- nautobot/core/tests/test_breadcrumbs.py +78 -4
- nautobot/core/tests/test_commands.py +7 -4
- nautobot/core/tests/test_graphql.py +20 -5
- nautobot/core/tests/test_jobs.py +34 -21
- nautobot/core/tests/test_ui.py +175 -1
- nautobot/core/tests/test_utils.py +35 -0
- nautobot/core/tests/test_views_generic.py +43 -0
- nautobot/core/tests/test_views_utils.py +239 -5
- nautobot/core/ui/breadcrumbs.py +208 -21
- nautobot/core/ui/bulk_buttons.py +8 -0
- nautobot/core/ui/object_detail.py +138 -55
- nautobot/core/ui/titles.py +1 -0
- nautobot/core/utils/requests.py +27 -2
- nautobot/core/views/generic.py +41 -31
- nautobot/core/views/mixins.py +80 -110
- nautobot/core/views/utils.py +153 -1
- nautobot/dcim/api/serializers.py +8 -2
- nautobot/dcim/constants.py +1 -0
- nautobot/dcim/factory.py +4 -3
- nautobot/dcim/filters/mixins.py +1 -2
- nautobot/dcim/forms.py +5 -1
- nautobot/dcim/migrations/0074_alter_rack_u_height.py +21 -0
- nautobot/dcim/models/devices.py +26 -1
- nautobot/dcim/models/racks.py +2 -2
- nautobot/dcim/templates/dcim/cable.html +53 -53
- nautobot/dcim/templates/dcim/cable_connect.html +182 -182
- nautobot/dcim/templates/dcim/cable_trace.html +1 -1
- nautobot/dcim/templates/dcim/console_port_connection_list.html +5 -5
- nautobot/dcim/templates/dcim/consoleport.html +86 -86
- nautobot/dcim/templates/dcim/consoleserverport.html +86 -86
- nautobot/dcim/templates/dcim/controller_create.html +34 -34
- nautobot/dcim/templates/dcim/controllermanageddevicegroup_create.html +68 -68
- nautobot/dcim/templates/dcim/device/base.html +1 -104
- nautobot/dcim/templates/dcim/device/config.html +17 -17
- nautobot/dcim/templates/dcim/device/consoleports.html +1 -52
- nautobot/dcim/templates/dcim/device/consoleserverports.html +1 -52
- nautobot/dcim/templates/dcim/device/devicebays.html +1 -48
- nautobot/dcim/templates/dcim/device/frontports.html +1 -52
- nautobot/dcim/templates/dcim/device/interfaces.html +1 -56
- nautobot/dcim/templates/dcim/device/inventory.html +1 -48
- nautobot/dcim/templates/dcim/device/lldp_neighbors.html +64 -64
- nautobot/dcim/templates/dcim/device/modulebays.html +1 -48
- nautobot/dcim/templates/dcim/device/poweroutlets.html +1 -52
- nautobot/dcim/templates/dcim/device/powerports.html +1 -52
- nautobot/dcim/templates/dcim/device/rearports.html +1 -52
- nautobot/dcim/templates/dcim/device/status.html +66 -66
- nautobot/dcim/templates/dcim/device/wireless.html +1 -72
- nautobot/dcim/templates/dcim/device.html +4 -422
- nautobot/dcim/templates/dcim/device_component_add.html +25 -25
- nautobot/dcim/templates/dcim/device_create.html +229 -0
- nautobot/dcim/templates/dcim/device_edit.html +2 -227
- nautobot/dcim/templates/dcim/devicebay.html +41 -41
- nautobot/dcim/templates/dcim/devicebay_populate.html +32 -32
- nautobot/dcim/templates/dcim/devicetype_component_add.html +28 -28
- nautobot/dcim/templates/dcim/devicetype_retrieve.html +1 -3
- nautobot/dcim/templates/dcim/frontport.html +84 -84
- nautobot/dcim/templates/dcim/inc/cable_toggle_buttons.html +1 -1
- nautobot/dcim/templates/dcim/inc/device_interface_filter.html +8 -0
- nautobot/dcim/templates/dcim/inc/device_napalm_tabs.html +1 -15
- nautobot/dcim/templates/dcim/inc/location_hierarchy.html +22 -22
- nautobot/dcim/templates/dcim/interface.html +206 -206
- nautobot/dcim/templates/dcim/interface_connection_list.html +5 -5
- nautobot/dcim/templates/dcim/interfaceredundancygroupassociation_create.html +6 -6
- nautobot/dcim/templates/dcim/inventoryitem.html +44 -44
- nautobot/dcim/templates/dcim/inventoryitem_add.html +32 -32
- nautobot/dcim/templates/dcim/inventoryitem_edit.html +22 -22
- nautobot/dcim/templates/dcim/location_migrate_data_to_contact.html +46 -46
- nautobot/dcim/templates/dcim/location_retrieve.html +1 -7
- nautobot/dcim/templates/dcim/locationtype.html +1 -6
- nautobot/dcim/templates/dcim/locationtype_retrieve.html +1 -7
- nautobot/dcim/templates/dcim/module/base.html +85 -85
- nautobot/dcim/templates/dcim/module_interfaces.html +1 -1
- nautobot/dcim/templates/dcim/module_modulebays.html +1 -1
- nautobot/dcim/templates/dcim/module_retrieve.html +52 -52
- nautobot/dcim/templates/dcim/module_update.html +61 -61
- nautobot/dcim/templates/dcim/modulebay_destroy.html +1 -1
- nautobot/dcim/templates/dcim/modulebay_retrieve.html +85 -85
- nautobot/dcim/templates/dcim/modulebay_update.html +33 -33
- nautobot/dcim/templates/dcim/modulefamily_retrieve.html +1 -1
- nautobot/dcim/templates/dcim/moduletype_retrieve.html +140 -144
- nautobot/dcim/templates/dcim/platform_create.html +38 -38
- nautobot/dcim/templates/dcim/power_port_connection_list.html +5 -5
- nautobot/dcim/templates/dcim/powerfeed_retrieve.html +1 -8
- nautobot/dcim/templates/dcim/poweroutlet.html +85 -85
- nautobot/dcim/templates/dcim/powerpanel_retrieve.html +1 -8
- nautobot/dcim/templates/dcim/powerport.html +91 -91
- nautobot/dcim/templates/dcim/rack_elevation_list.html +18 -18
- nautobot/dcim/templates/dcim/rack_retrieve.html +264 -274
- nautobot/dcim/templates/dcim/rackreservation_retrieve.html +0 -3
- nautobot/dcim/templates/dcim/rearport.html +78 -78
- nautobot/dcim/templates/dcim/virtualdevicecontext_retrieve.html +1 -5
- nautobot/dcim/tests/integration/test_device_bulk_operations.py +3 -2
- nautobot/dcim/tests/integration/test_location_bulk_operations.py +6 -2
- nautobot/dcim/tests/test_api.py +33 -1
- nautobot/dcim/tests/test_views.py +148 -4
- nautobot/dcim/ui.py +29 -0
- nautobot/dcim/urls.py +1 -109
- nautobot/dcim/utils.py +30 -0
- nautobot/dcim/views.py +1009 -531
- nautobot/extras/tables.py +20 -0
- nautobot/extras/templates/extras/computedfield_edit.html +4 -4
- nautobot/extras/templates/extras/configcontext_update.html +1 -1
- nautobot/extras/templates/extras/configcontextschema_retrieve.html +32 -32
- nautobot/extras/templates/extras/customfield_update.html +23 -23
- nautobot/extras/templates/extras/dynamicgroup_retrieve.html +38 -38
- nautobot/extras/templates/extras/dynamicgroup_update.html +62 -62
- nautobot/extras/templates/extras/gitrepository_list.html +10 -10
- nautobot/extras/templates/extras/gitrepository_retrieve.html +68 -68
- nautobot/extras/templates/extras/graphqlquery_retrieve.html +73 -73
- nautobot/extras/templates/extras/inc/configcontext_format.html +2 -2
- nautobot/extras/templates/extras/inc/job_table.html +10 -10
- nautobot/extras/templates/extras/inc/jobresult.html +21 -21
- nautobot/extras/templates/extras/inc/jobresult_js.html +6 -6
- nautobot/extras/templates/extras/inc/tags_panel.html +10 -10
- nautobot/extras/templates/extras/job.html +64 -64
- nautobot/extras/templates/extras/job_approval_request.html +9 -9
- nautobot/extras/templates/extras/job_bulk_edit.html +13 -13
- nautobot/extras/templates/extras/job_edit.html +45 -45
- nautobot/extras/templates/extras/job_list.html +4 -4
- nautobot/extras/templates/extras/jobresult_retrieve.html +0 -25
- nautobot/extras/templates/extras/marketplace.html +101 -101
- nautobot/extras/templates/extras/metadatatype_create.html +20 -20
- nautobot/extras/templates/extras/object_assign_contact_or_team.html +18 -18
- nautobot/extras/templates/extras/object_configcontext.html +1 -3
- nautobot/extras/templates/extras/objectchange.html +2 -165
- nautobot/extras/templates/extras/objectchange_retrieve.html +165 -0
- nautobot/extras/templates/extras/plugin_detail.html +41 -41
- nautobot/extras/templates/extras/plugins_list.html +9 -9
- nautobot/extras/templates/extras/plugins_tiles.html +26 -26
- nautobot/extras/templates/extras/relationship_edit.html +4 -4
- nautobot/extras/templates/extras/role_retrieve.html +13 -13
- nautobot/extras/templates/extras/scheduled_jobs_approval_queue_list.html +21 -21
- nautobot/extras/templates/extras/scheduledjob.html +128 -128
- nautobot/extras/templates/extras/secret_create.html +53 -53
- nautobot/extras/templates/extras/secretsgroup_update.html +13 -13
- nautobot/extras/templates/extras/templatetags/plugin_object_detail_tabs.html +3 -3
- nautobot/extras/templates/extras/webhook.html +79 -79
- nautobot/extras/tests/integration/test_relationships.py +6 -6
- nautobot/extras/tests/test_filters.py +1 -1
- nautobot/extras/tests/test_jobs.py +2 -0
- nautobot/extras/tests/test_views.py +3 -3
- nautobot/extras/urls.py +1 -3
- nautobot/extras/views.py +101 -27
- nautobot/ipam/filters.py +2 -2
- nautobot/ipam/migrations/0053_alter_vrfdeviceassignment_options_and_more.py +20 -0
- nautobot/ipam/models.py +34 -0
- nautobot/ipam/tables.py +3 -1
- nautobot/ipam/templates/ipam/inc/prefix_header_extra_content_table.html +4 -0
- nautobot/ipam/templates/ipam/inc/toggle_available.html +8 -8
- nautobot/ipam/templates/ipam/inc/vlangroup_header.html +4 -4
- nautobot/ipam/templates/ipam/ipaddress.html +119 -123
- nautobot/ipam/templates/ipam/ipaddress_assign.html +10 -10
- nautobot/ipam/templates/ipam/ipaddress_edit.html +1 -1
- nautobot/ipam/templates/ipam/ipaddress_merge.html +180 -180
- nautobot/ipam/templates/ipam/ipaddresstointerface_retrieve.html +48 -48
- nautobot/ipam/templates/ipam/prefix.html +2 -107
- nautobot/ipam/templates/ipam/prefix_create.html +34 -0
- nautobot/ipam/templates/ipam/prefix_edit.html +1 -34
- nautobot/ipam/templates/ipam/prefix_retrieve.html +3 -0
- nautobot/ipam/templates/ipam/service_retrieve.html +1 -6
- nautobot/ipam/templates/ipam/vlan_retrieve.html +1 -7
- nautobot/ipam/templates/ipam/vrf_edit.html +1 -1
- nautobot/ipam/tests/test_views.py +34 -0
- nautobot/ipam/ui.py +145 -0
- nautobot/ipam/urls.py +1 -46
- nautobot/ipam/utils/__init__.py +26 -0
- nautobot/ipam/views.py +219 -106
- nautobot/project-static/docs/404.html +11 -11
- nautobot/project-static/docs/apps/index.html +11 -11
- nautobot/project-static/docs/apps/nautobot-apps.html +11 -11
- nautobot/project-static/docs/assets/javascripts/{bundle.92b07e13.min.js → bundle.f55a23d4.min.js} +2 -2
- nautobot/project-static/docs/assets/javascripts/{bundle.92b07e13.min.js.map → bundle.f55a23d4.min.js.map} +2 -2
- nautobot/project-static/docs/assets/stylesheets/{main.7e37652d.min.css → main.e53b48f4.min.css} +1 -1
- nautobot/project-static/docs/assets/stylesheets/{main.7e37652d.min.css.map → main.e53b48f4.min.css.map} +1 -1
- nautobot/project-static/docs/code-reference/nautobot/apps/__init__.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/admin.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/api.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/change_logging.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/choices.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/config.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/constants.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/datasources.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/events.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/exceptions.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/factory.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/filters.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/forms.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/graphql.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/jobs.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/models.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/querysets.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/secrets.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/testing.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/ui.html +2174 -1226
- nautobot/project-static/docs/code-reference/nautobot/apps/urls.html +11 -11
- nautobot/project-static/docs/code-reference/nautobot/apps/utils.html +12 -12
- nautobot/project-static/docs/code-reference/nautobot/apps/views.html +72 -27
- nautobot/project-static/docs/development/apps/api/configuration-view.html +11 -11
- nautobot/project-static/docs/development/apps/api/database-backend-config.html +11 -11
- nautobot/project-static/docs/development/apps/api/models/django-admin.html +11 -11
- nautobot/project-static/docs/development/apps/api/models/global-search.html +11 -11
- nautobot/project-static/docs/development/apps/api/models/graphql.html +11 -11
- nautobot/project-static/docs/development/apps/api/models/index.html +11 -11
- nautobot/project-static/docs/development/apps/api/nautobot-app-config.html +11 -11
- nautobot/project-static/docs/development/apps/api/platform-features/custom-validators.html +11 -11
- nautobot/project-static/docs/development/apps/api/platform-features/filter-extensions.html +11 -11
- nautobot/project-static/docs/development/apps/api/platform-features/git-repository-content.html +11 -11
- nautobot/project-static/docs/development/apps/api/platform-features/index.html +11 -11
- nautobot/project-static/docs/development/apps/api/platform-features/jinja2-filters.html +11 -11
- nautobot/project-static/docs/development/apps/api/platform-features/jobs.html +11 -11
- nautobot/project-static/docs/development/apps/api/platform-features/prepopulating-data.html +11 -11
- nautobot/project-static/docs/development/apps/api/platform-features/secrets-providers.html +11 -11
- nautobot/project-static/docs/development/apps/api/platform-features/table-extensions.html +11 -11
- nautobot/project-static/docs/development/apps/api/platform-features/uniquely-identify-objects.html +11 -11
- nautobot/project-static/docs/development/apps/api/prometheus.html +11 -11
- nautobot/project-static/docs/development/apps/api/setup.html +11 -11
- nautobot/project-static/docs/development/apps/api/testing.html +11 -11
- nautobot/project-static/docs/development/apps/api/ui-extensions/banners.html +11 -11
- nautobot/project-static/docs/development/apps/api/ui-extensions/home-page.html +11 -11
- nautobot/project-static/docs/development/apps/api/ui-extensions/index.html +11 -11
- nautobot/project-static/docs/development/apps/api/ui-extensions/navigation.html +11 -11
- nautobot/project-static/docs/development/apps/api/ui-extensions/object-views.html +11 -11
- nautobot/project-static/docs/development/apps/api/views/base-template.html +11 -11
- nautobot/project-static/docs/development/apps/api/views/core-view-overrides.html +11 -11
- nautobot/project-static/docs/development/apps/api/views/django-generic-views.html +11 -11
- nautobot/project-static/docs/development/apps/api/views/help-documentation.html +11 -11
- nautobot/project-static/docs/development/apps/api/views/index.html +11 -11
- nautobot/project-static/docs/development/apps/api/views/nautobot-generic-views.html +11 -11
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewset.html +11 -11
- nautobot/project-static/docs/development/apps/api/views/nautobotuiviewsetrouter.html +11 -11
- nautobot/project-static/docs/development/apps/api/views/notes.html +11 -11
- nautobot/project-static/docs/development/apps/api/views/rest-api.html +11 -11
- nautobot/project-static/docs/development/apps/api/views/urls.html +11 -11
- nautobot/project-static/docs/development/apps/index.html +11 -11
- nautobot/project-static/docs/development/apps/migration/code-updates.html +11 -11
- nautobot/project-static/docs/development/apps/migration/dependency-updates.html +11 -11
- nautobot/project-static/docs/development/apps/migration/from-v1.html +11 -11
- nautobot/project-static/docs/development/apps/migration/model-updates/dcim.html +11 -11
- nautobot/project-static/docs/development/apps/migration/model-updates/extras.html +11 -11
- nautobot/project-static/docs/development/apps/migration/model-updates/global.html +11 -11
- nautobot/project-static/docs/development/apps/migration/model-updates/ipam.html +11 -11
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/best-practices.html +11 -11
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/breadcrumbs-titles.html +11 -11
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/custom-content.html +11 -11
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/index.html +11 -11
- nautobot/project-static/docs/development/apps/migration/ui-component-framework/migration-steps.html +11 -11
- nautobot/project-static/docs/development/apps/porting-from-netbox.html +11 -11
- nautobot/project-static/docs/development/core/application-registry.html +11 -11
- nautobot/project-static/docs/development/core/best-practices.html +11 -11
- nautobot/project-static/docs/development/core/bootstrap-ui.html +11 -11
- nautobot/project-static/docs/development/core/caching.html +11 -11
- nautobot/project-static/docs/development/core/controllers.html +11 -11
- nautobot/project-static/docs/development/core/docker-compose-advanced-use-cases.html +11 -11
- nautobot/project-static/docs/development/core/generic-views.html +11 -11
- nautobot/project-static/docs/development/core/getting-started.html +50 -48
- nautobot/project-static/docs/development/core/homepage.html +11 -11
- nautobot/project-static/docs/development/core/index.html +11 -11
- nautobot/project-static/docs/development/core/minikube-dev-environment-for-k8s-jobs.html +11 -11
- nautobot/project-static/docs/development/core/model-checklist.html +11 -11
- nautobot/project-static/docs/development/core/model-features.html +11 -11
- nautobot/project-static/docs/development/core/natural-keys.html +11 -11
- nautobot/project-static/docs/development/core/navigation-menu.html +11 -11
- nautobot/project-static/docs/development/core/release-checklist.html +11 -11
- nautobot/project-static/docs/development/core/role-internals.html +11 -11
- nautobot/project-static/docs/development/core/settings.html +11 -11
- nautobot/project-static/docs/development/core/style-guide.html +15 -11
- nautobot/project-static/docs/development/core/templates.html +11 -11
- nautobot/project-static/docs/development/core/testing.html +11 -11
- nautobot/project-static/docs/development/core/ui-component-framework.html +11 -11
- nautobot/project-static/docs/development/core/user-preferences.html +11 -11
- nautobot/project-static/docs/development/index.html +11 -11
- nautobot/project-static/docs/development/jobs/getting-started.html +11 -11
- nautobot/project-static/docs/development/jobs/index.html +11 -11
- nautobot/project-static/docs/development/jobs/installation.html +11 -11
- nautobot/project-static/docs/development/jobs/job-extensions.html +11 -11
- nautobot/project-static/docs/development/jobs/job-logging.html +11 -11
- nautobot/project-static/docs/development/jobs/job-patterns.html +11 -11
- nautobot/project-static/docs/development/jobs/job-structure.html +11 -11
- nautobot/project-static/docs/development/jobs/migration/from-v1.html +11 -11
- nautobot/project-static/docs/development/jobs/testing.html +11 -11
- nautobot/project-static/docs/index.html +11 -11
- nautobot/project-static/docs/objects.inv +0 -0
- nautobot/project-static/docs/overview/application_stack.html +11 -11
- nautobot/project-static/docs/overview/design_philosophy.html +11 -11
- nautobot/project-static/docs/release-notes/index.html +11 -11
- nautobot/project-static/docs/release-notes/version-1.0.html +11 -11
- nautobot/project-static/docs/release-notes/version-1.1.html +11 -11
- nautobot/project-static/docs/release-notes/version-1.2.html +11 -11
- nautobot/project-static/docs/release-notes/version-1.3.html +11 -11
- nautobot/project-static/docs/release-notes/version-1.4.html +11 -11
- nautobot/project-static/docs/release-notes/version-1.5.html +11 -11
- nautobot/project-static/docs/release-notes/version-1.6.html +11 -11
- nautobot/project-static/docs/release-notes/version-2.0.html +11 -11
- nautobot/project-static/docs/release-notes/version-2.1.html +11 -11
- nautobot/project-static/docs/release-notes/version-2.2.html +11 -11
- nautobot/project-static/docs/release-notes/version-2.3.html +11 -11
- nautobot/project-static/docs/release-notes/version-2.4.html +196 -11
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +300 -300
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/ldap.html +11 -11
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/remote.html +11 -11
- nautobot/project-static/docs/user-guide/administration/configuration/authentication/sso.html +11 -11
- nautobot/project-static/docs/user-guide/administration/configuration/index.html +11 -11
- nautobot/project-static/docs/user-guide/administration/configuration/redis.html +11 -11
- nautobot/project-static/docs/user-guide/administration/configuration/settings.html +11 -11
- nautobot/project-static/docs/user-guide/administration/configuration/time-zones.html +11 -11
- nautobot/project-static/docs/user-guide/administration/guides/celery-queues.html +89 -14
- nautobot/project-static/docs/user-guide/administration/guides/docker.html +11 -11
- nautobot/project-static/docs/user-guide/administration/guides/health-checks.html +11 -11
- nautobot/project-static/docs/user-guide/administration/guides/permissions.html +11 -11
- nautobot/project-static/docs/user-guide/administration/guides/prometheus-metrics.html +11 -11
- nautobot/project-static/docs/user-guide/administration/guides/replicating-nautobot.html +11 -11
- nautobot/project-static/docs/user-guide/administration/guides/request-profiling.html +11 -11
- nautobot/project-static/docs/user-guide/administration/guides/s3-django-storage.html +11 -11
- nautobot/project-static/docs/user-guide/administration/guides/selinux-troubleshooting.html +11 -11
- nautobot/project-static/docs/user-guide/administration/installation/app-install.html +11 -11
- nautobot/project-static/docs/user-guide/administration/installation/external-authentication.html +11 -11
- nautobot/project-static/docs/user-guide/administration/installation/http-server.html +11 -11
- nautobot/project-static/docs/user-guide/administration/installation/index.html +11 -11
- nautobot/project-static/docs/user-guide/administration/installation/install_system.html +11 -11
- nautobot/project-static/docs/user-guide/administration/installation/nautobot.html +11 -11
- nautobot/project-static/docs/user-guide/administration/installation/services.html +11 -11
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-netbox.html +11 -11
- nautobot/project-static/docs/user-guide/administration/migration/migrating-from-postgresql.html +11 -11
- nautobot/project-static/docs/user-guide/administration/security/index.html +11 -11
- nautobot/project-static/docs/user-guide/administration/security/notices.html +11 -11
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-server.html +11 -11
- nautobot/project-static/docs/user-guide/administration/tools/nautobot-shell.html +11 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/database-backup.html +11 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/after-you-upgrade.html +11 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/before-you-upgrade.html +11 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/for-developers.html +11 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/index.html +11 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/ipam/whats-changed.html +11 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/region-and-site-data-migration-guide.html +11 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/from-v1/upgrading-from-nautobot-v1.html +11 -11
- nautobot/project-static/docs/user-guide/administration/upgrading/upgrading.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuit.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittermination.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/circuits/circuittype.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/circuits/provider.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/circuits/providernetwork.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloud.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudaccount.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetwork.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudnetworkprefixassignment.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudresourcetype.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservice.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/cloud/cloudservicenetworkassignment.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/cable.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleport.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleporttemplate.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverport.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/consoleserverporttemplate.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controller.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/controllermanageddevicegroup.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/device.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebay.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicebaytemplate.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicefamily.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/deviceredundancygroup.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/devicetype.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontport.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/frontporttemplate.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interface.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfaceredundancygroup.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/interfacetemplate.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/inventoryitem.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/location.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/locationtype.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/manufacturer.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/module.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebay.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulebaytemplate.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/modulefamily.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/moduletype.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/platform.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerfeed.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlet.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/poweroutlettemplate.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerpanel.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerport.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/powerporttemplate.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rack.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackgroup.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rackreservation.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearport.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/rearporttemplate.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareimagefile.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/softwareversion.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualchassis.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/dcim/virtualdevicecontext.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontext.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/extras/configcontextschema.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/extras/contact.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/extras/team.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/ipaddress.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/namespace.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/prefix.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/rir.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/routetarget.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/service.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlan.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vlangroup.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/ipam/vrf.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/overview/introduction.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenant.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/tenancy/tenantgroup.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/cluster.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustergroup.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/clustertype.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/virtualmachine.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/virtualization/vminterface.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/wireless/index.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/wireless/radioprofile.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/wireless/supporteddatarate.html +11 -11
- nautobot/project-static/docs/user-guide/core-data-model/wireless/wirelessnetwork.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/contacts-and-teams.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/custom-fields.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-devices.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/creating-location-types-and-locations.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/index.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/interfaces.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/ipam.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/platforms.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/search-bar.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/tenants.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/getting-started/vlans-and-vlan-groups.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/git-data-source.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/graphql.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/ip-address-merge-tool.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/relationships.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/software-image-files-and-versions.html +11 -11
- nautobot/project-static/docs/user-guide/feature-guides/wireless-networks-and-controllers.html +11 -11
- nautobot/project-static/docs/user-guide/index.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/change-logging.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/computedfield.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/customfield.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/customlink.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/dynamicgroup.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/events.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/exporttemplate.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/externalintegration.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/gitrepository.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/graphql.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/graphqlquery.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/imageattachment.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/index.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/job-scheduling-and-approvals.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobbutton.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobhook.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/jobqueue.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/kubernetes-job-support.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/managing-jobs.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/jobs/models.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/napalm.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/note.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/objectmetadata.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/relationship.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/rendering-jinja-templates.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/authentication.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/filtering.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/overview.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/rest-api/ui-related-endpoints.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/role.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/savedview.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/secret.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/staticgroupassociation.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/status.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/tag.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/template-filters.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/users/objectpermission.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/users/token.html +11 -11
- nautobot/project-static/docs/user-guide/platform-functionality/webhook.html +11 -11
- nautobot/tenancy/templates/tenancy/tenant.html +1 -7
- nautobot/tenancy/views.py +13 -0
- nautobot/users/templates/users/api_tokens.html +4 -4
- nautobot/users/templates/users/base.html +28 -28
- nautobot/virtualization/templates/virtualization/cluster.html +64 -64
- nautobot/virtualization/templates/virtualization/inc/virtualmachine_vminterface_filter.html +8 -0
- nautobot/virtualization/templates/virtualization/virtualmachine_component_add.html +25 -25
- nautobot/virtualization/templates/virtualization/virtualmachine_retrieve.html +1 -251
- nautobot/virtualization/templates/virtualization/vminterface.html +70 -70
- nautobot/virtualization/urls.py +0 -12
- nautobot/virtualization/views.py +158 -54
- nautobot/wireless/templates/wireless/wirelessnetwork_create.html +13 -13
- nautobot/wireless/tests/integration/test_radio_profile.py +1 -1
- {nautobot-2.4.18.dist-info → nautobot-2.4.19.dist-info}/METADATA +1 -1
- {nautobot-2.4.18.dist-info → nautobot-2.4.19.dist-info}/RECORD +581 -570
- nautobot/ipam/templates/ipam/prefix_ipaddresses.html +0 -11
- nautobot/ipam/templates/ipam/prefix_prefixes.html +0 -11
- {nautobot-2.4.18.dist-info → nautobot-2.4.19.dist-info}/LICENSE.txt +0 -0
- {nautobot-2.4.18.dist-info → nautobot-2.4.19.dist-info}/NOTICE +0 -0
- {nautobot-2.4.18.dist-info → nautobot-2.4.19.dist-info}/WHEEL +0 -0
- {nautobot-2.4.18.dist-info → nautobot-2.4.19.dist-info}/entry_points.txt +0 -0
|
@@ -3,627 +3,627 @@
|
|
|
3
3
|
{% load helpers %}
|
|
4
4
|
|
|
5
5
|
{% block header %}
|
|
6
|
-
<div class="row noprint">
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
6
|
+
<div class="row noprint">
|
|
7
|
+
<div class="col-md-12">
|
|
8
|
+
<ol class="breadcrumb">
|
|
9
|
+
<li><a href="{% url 'home' %}">Nautobot</a></li>
|
|
10
|
+
<li><a href="{% url 'theme_preview' %}">Theme Preview</a></li>
|
|
11
|
+
</ol>
|
|
12
|
+
</div>
|
|
12
13
|
</div>
|
|
13
|
-
</div>
|
|
14
14
|
|
|
15
|
-
<h1>{% block title %}Nautobot Theme Preview{% endblock %}</h1>
|
|
16
|
-
<hr>
|
|
15
|
+
<h1>{% block title %}Nautobot Theme Preview{% endblock %}</h1>
|
|
16
|
+
<hr>
|
|
17
17
|
{% endblock %}
|
|
18
18
|
|
|
19
19
|
{% block content %}
|
|
20
20
|
<!-- Begin example of "object_list.html" -->
|
|
21
|
-
<div class="row noprint">
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
21
|
+
<div class="row noprint">
|
|
22
|
+
<div class="col-sm-8 col-md-9">
|
|
23
|
+
<ol class="breadcrumb">
|
|
24
|
+
<li><a>Statuses</a></li>
|
|
25
|
+
</ol>
|
|
26
|
+
</div>
|
|
27
|
+
<div class="col-sm-4 col-md-3">
|
|
28
|
+
<form>
|
|
29
|
+
<div class="input-group">
|
|
30
|
+
<input type="text" name="q" class="form-control" placeholder="Search Statuses">
|
|
31
|
+
<span class="input-group-btn">
|
|
32
|
+
<button type="submit" class="btn btn-primary">
|
|
33
|
+
<span class="mdi mdi-magnify"></span>
|
|
34
|
+
</button>
|
|
35
|
+
</span>
|
|
36
|
+
</div>
|
|
37
|
+
</form>
|
|
38
|
+
</div>
|
|
38
39
|
</div>
|
|
39
|
-
</div>
|
|
40
40
|
|
|
41
|
-
<div class="pull-right noprint">
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
41
|
+
<div class="pull-right noprint">
|
|
42
|
+
<button type="button" class="btn btn-default"><i class="mdi mdi-cog"></i> Configure</button>
|
|
43
|
+
<button type="button" class="btn btn-default"><i class="mdi mdi-filter"></i> Filter</button>
|
|
44
|
+
<div class="btn-group">
|
|
45
|
+
{% add_button content_type.model_class|validated_viewname:"add" %}
|
|
46
|
+
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
|
|
47
|
+
<span class="caret"></span>
|
|
48
|
+
<span class="sr-only">Toggle Dropdown</span>
|
|
49
|
+
</button>
|
|
50
|
+
<ul class="dropdown-menu pull-right" role="menu">
|
|
51
|
+
{% job_import_button content_type list_element=True%}
|
|
52
|
+
<li class="divider"></li>
|
|
53
|
+
{% export_button content_type list_element=True %}
|
|
54
|
+
</ul>
|
|
55
|
+
</div>
|
|
56
|
+
<div class="btn-group">
|
|
57
|
+
<button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown">
|
|
58
|
+
Actions <span class="caret"></span>
|
|
59
|
+
</button>
|
|
60
|
+
<ul class="dropdown-menu pull-right" role="menu">
|
|
61
|
+
{% job_import_button content_type list_element=True%}
|
|
62
|
+
<li class="divider"></li>
|
|
63
|
+
{% export_button content_type list_element=True %}
|
|
64
|
+
</ul>
|
|
65
|
+
</div>
|
|
65
66
|
</div>
|
|
66
|
-
</
|
|
67
|
-
<
|
|
68
|
-
<div class="
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
</
|
|
79
|
-
</div>
|
|
80
|
-
</form>
|
|
81
|
-
<!-- Begin nested example of "inc/paginator.html" -->
|
|
82
|
-
<div class="paginator text-right">
|
|
83
|
-
<nav>
|
|
84
|
-
<ul class="pagination pull-right">
|
|
85
|
-
<li><a><i class="mdi mdi-chevron-double-left"></i></a></li>
|
|
86
|
-
<li><a>1</a></li>
|
|
87
|
-
<li><a>2</a></li>
|
|
88
|
-
<li class="active"><a>3</a></li>
|
|
89
|
-
<li><a>4</a></li>
|
|
90
|
-
<li><a>5</a></li>
|
|
91
|
-
<li class="disabled"><span>…</span></li>
|
|
92
|
-
<li><a>10</a></li>
|
|
93
|
-
<li><a><i class="mdi mdi-chevron-double-right"></i></a></li>
|
|
94
|
-
</ul>
|
|
95
|
-
</nav>
|
|
96
|
-
<form class="form-inline">
|
|
97
|
-
<select name="per_page" id="per_page" class="form-control">
|
|
98
|
-
<option value="25" selected="selected">25</option>
|
|
99
|
-
<option value="50">50</option>
|
|
100
|
-
<option value="100">100</option>
|
|
101
|
-
</select> per page
|
|
67
|
+
<h1>Object Listing</h1>
|
|
68
|
+
<div class="row">
|
|
69
|
+
<div class="col-md-12">
|
|
70
|
+
<form>
|
|
71
|
+
{% include "panel_table.html" %}
|
|
72
|
+
<div class="pull-left noprint">
|
|
73
|
+
<button type="submit" name="_edit" class="btn btn-warning btn-sm">
|
|
74
|
+
<span class="mdi mdi-pencil"></span> Edit Selected
|
|
75
|
+
</button>
|
|
76
|
+
<button type="submit" name="_delete" class="btn btn-danger btn-sm">
|
|
77
|
+
<span class="mdi mdi-trash-can-outline"></span> Delete Selected
|
|
78
|
+
</button>
|
|
79
|
+
</div>
|
|
102
80
|
</form>
|
|
103
|
-
|
|
104
|
-
|
|
81
|
+
<!-- Begin nested example of "inc/paginator.html" -->
|
|
82
|
+
<div class="paginator text-right">
|
|
83
|
+
<nav>
|
|
84
|
+
<ul class="pagination pull-right">
|
|
85
|
+
<li><a><i class="mdi mdi-chevron-double-left"></i></a></li>
|
|
86
|
+
<li><a>1</a></li>
|
|
87
|
+
<li><a>2</a></li>
|
|
88
|
+
<li class="active"><a>3</a></li>
|
|
89
|
+
<li><a>4</a></li>
|
|
90
|
+
<li><a>5</a></li>
|
|
91
|
+
<li class="disabled"><span>…</span></li>
|
|
92
|
+
<li><a>10</a></li>
|
|
93
|
+
<li><a><i class="mdi mdi-chevron-double-right"></i></a></li>
|
|
94
|
+
</ul>
|
|
95
|
+
</nav>
|
|
96
|
+
<form class="form-inline">
|
|
97
|
+
<select name="per_page" id="per_page" class="form-control">
|
|
98
|
+
<option value="25" selected="selected">25</option>
|
|
99
|
+
<option value="50">50</option>
|
|
100
|
+
<option value="100">100</option>
|
|
101
|
+
</select> per page
|
|
102
|
+
</form>
|
|
103
|
+
<div class="text-right text-muted">
|
|
104
|
+
Showing 50-75 of 250
|
|
105
|
+
</div>
|
|
105
106
|
</div>
|
|
106
|
-
</div>
|
|
107
107
|
<!-- End nested example of "inc/paginator.html" -->
|
|
108
|
-
|
|
108
|
+
<div class="clearfix"></div>
|
|
109
|
+
</div>
|
|
109
110
|
</div>
|
|
110
|
-
</div>
|
|
111
111
|
<!-- End example of "object_list.html" -->
|
|
112
|
-
<hr>
|
|
112
|
+
<hr>
|
|
113
113
|
|
|
114
114
|
<!-- Begin example of "object_retrieve.html" -->
|
|
115
|
-
<div class="row">
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
115
|
+
<div class="row">
|
|
116
|
+
<div class="col-sm-8 col-md-9">
|
|
117
|
+
<ol class="breadcrumb">
|
|
118
|
+
<li><a>Statuses</a></li>
|
|
119
|
+
<li>{{ object|hyperlinked_object }}</li>
|
|
120
|
+
</ol>
|
|
121
|
+
</div>
|
|
122
|
+
<div class="col-sm-4 col-md-3">
|
|
123
|
+
<form>
|
|
124
|
+
<div class="input-group">
|
|
125
|
+
<input type="text" name="q" class="form-control" placeholder="Search Statuses">
|
|
126
|
+
<span class="input-group-btn">
|
|
127
|
+
<button type="submit" class="btn btn-primary">
|
|
128
|
+
<span class="mdi mdi-magnify"></span>
|
|
129
|
+
</button>
|
|
130
|
+
</span>
|
|
131
|
+
</div>
|
|
132
|
+
</form>
|
|
133
|
+
</div>
|
|
133
134
|
</div>
|
|
134
|
-
</div>
|
|
135
135
|
|
|
136
|
-
<div class="pull-right noprint">
|
|
137
|
-
|
|
138
|
-
</div>
|
|
139
|
-
<h1>
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
</h1>
|
|
147
|
-
{% include 'inc/created_updated.html' %}
|
|
148
|
-
<ul class="nav nav-tabs">
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
</ul>
|
|
154
|
-
<div class="tab-content">
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
136
|
+
<div class="pull-right noprint">
|
|
137
|
+
{% consolidate_detail_view_action_buttons %}
|
|
138
|
+
</div>
|
|
139
|
+
<h1>
|
|
140
|
+
<span class="hover_copy">
|
|
141
|
+
Object Detail
|
|
142
|
+
<button type="button" class="btn btn-inline btn-default hover_copy_button">
|
|
143
|
+
<span class="mdi mdi-content-copy"></span>
|
|
144
|
+
</button>
|
|
145
|
+
</span>
|
|
146
|
+
</h1>
|
|
147
|
+
{% include 'inc/created_updated.html' %}
|
|
148
|
+
<ul class="nav nav-tabs">
|
|
149
|
+
<li role="presentation" class="active"><a>Object</a></li>
|
|
150
|
+
<li role="presentation"><a>Advanced</a></li>
|
|
151
|
+
<li role="presentation"><a>Notes</a></li>
|
|
152
|
+
<li role="presentation"><a>Change Log</a></li>
|
|
153
|
+
</ul>
|
|
154
|
+
<div class="tab-content">
|
|
155
|
+
<div role="tabpanel" class="tab-pane active">
|
|
156
|
+
<div class="row">
|
|
157
|
+
<div class="col-md-6">
|
|
158
|
+
<div class="panel panel-default">
|
|
159
|
+
<div class="panel-heading"><strong>Status</strong></div>
|
|
160
|
+
<table class="table table-hover panel-body attr-table">
|
|
161
|
+
<tr>
|
|
162
|
+
<td>Name</td>
|
|
163
|
+
<td>{{ object.name }}</td>
|
|
164
|
+
</tr>
|
|
165
|
+
</table>
|
|
166
|
+
</div>
|
|
166
167
|
</div>
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
</
|
|
176
|
-
</
|
|
168
|
+
<div class="col-md-6">
|
|
169
|
+
<div class="panel panel-default">
|
|
170
|
+
<div class="panel-heading"><strong>Right Side</strong></div>
|
|
171
|
+
<table class="table table-hover panel-body attr-table">
|
|
172
|
+
<tr>
|
|
173
|
+
<td>Property</td>
|
|
174
|
+
<td>Value</td>
|
|
175
|
+
</tr>
|
|
176
|
+
</table>
|
|
177
|
+
</div>
|
|
177
178
|
</div>
|
|
178
179
|
</div>
|
|
179
180
|
</div>
|
|
180
181
|
</div>
|
|
181
|
-
</div>
|
|
182
182
|
<!-- End example of "object_retrieve.html" -->
|
|
183
|
-
<hr>
|
|
183
|
+
<hr>
|
|
184
184
|
|
|
185
185
|
<!-- Begin example of "object_create.html" -->
|
|
186
|
-
<form class="form form-horizontal">
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
</div>
|
|
193
|
-
Add a new object
|
|
194
|
-
</h3>
|
|
195
|
-
<div class="panel panel-default">
|
|
196
|
-
<div class="panel-heading"><strong>Object</strong></div>
|
|
197
|
-
<div class="panel-body">
|
|
198
|
-
<div class="form-group">
|
|
199
|
-
<label class="col-md-3 control-label" for="id_name">Name</label>
|
|
200
|
-
<div class="col-md-9">
|
|
201
|
-
<input type="text" name="name" class="form-control" placeholder="Name" id="id_name">
|
|
202
|
-
</div>
|
|
186
|
+
<form class="form form-horizontal">
|
|
187
|
+
<div class="row">
|
|
188
|
+
<div class="col-md-6 col-md-offset-3">
|
|
189
|
+
<h3>
|
|
190
|
+
<div class="pull-right">
|
|
191
|
+
<a class="btn btn-link btn-xs"><i class="mdi mdi-help-circle"></i></a>
|
|
203
192
|
</div>
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
193
|
+
Add a new object
|
|
194
|
+
</h3>
|
|
195
|
+
<div class="panel panel-default">
|
|
196
|
+
<div class="panel-heading"><strong>Object</strong></div>
|
|
197
|
+
<div class="panel-body">
|
|
198
|
+
<div class="form-group">
|
|
199
|
+
<label class="col-md-3 control-label" for="id_name">Name</label>
|
|
200
|
+
<div class="col-md-9">
|
|
201
|
+
<input type="text" name="name" class="form-control" placeholder="Name" id="id_name">
|
|
202
|
+
</div>
|
|
203
|
+
</div>
|
|
204
|
+
<div class="form-group">
|
|
205
|
+
<label class="col-md-3 control-label required" for="id_status">Status</label>
|
|
206
|
+
<div class="col-md-9">
|
|
207
|
+
<select name="status" class="nautobot-select2-api form-control select2-hidden-accessible" data-query-param-content_types="["dcim.device"]" display-field="display" value-field="id" data-depth="0" required="" placeholder="Status" data-url="/api/extras/statuses/" id="id_status">
|
|
208
|
+
</select>
|
|
209
|
+
<span class="help-block">Help text for this form field</span>
|
|
210
|
+
</div>
|
|
210
211
|
</div>
|
|
211
212
|
</div>
|
|
212
213
|
</div>
|
|
213
214
|
</div>
|
|
214
215
|
</div>
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
216
|
+
<div class="row">
|
|
217
|
+
<div class="col-md-6 col-md-offset-3 text-right">
|
|
218
|
+
<button type="submit" class="btn btn-primary">Create</button>
|
|
219
|
+
<button type="submit" class="btn btn-primary">Create and Add Another</button>
|
|
220
|
+
<a class="btn btn-default">Cancel</a>
|
|
221
|
+
</div>
|
|
221
222
|
</div>
|
|
222
|
-
</
|
|
223
|
-
</form>
|
|
223
|
+
</form>
|
|
224
224
|
<!-- End example of "object_create.html" -->
|
|
225
|
-
<hr>
|
|
225
|
+
<hr>
|
|
226
226
|
|
|
227
|
-
<div class="row">
|
|
228
|
-
|
|
227
|
+
<div class="row">
|
|
228
|
+
<div class="col-md-12">
|
|
229
229
|
<!-- Begin example of home page panel -->
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
</div>
|
|
235
|
-
<div class="list-group">
|
|
236
|
-
<div class="list-group-item">
|
|
237
|
-
<span class="badge pull-right">123</span>
|
|
238
|
-
<h4 class="list-group-item-heading">
|
|
239
|
-
<a>Locations</a>
|
|
240
|
-
</h4>
|
|
241
|
-
<p class="list-group-item-text text-muted">Hierarchical geographic locations</p>
|
|
230
|
+
<div class="homepage_column" style="columns: 4 360px">
|
|
231
|
+
<div class="panel panel-default" style="break-inside: avoid">
|
|
232
|
+
<div class="panel-heading">
|
|
233
|
+
<strong>Home Page Panel</strong>
|
|
242
234
|
</div>
|
|
243
|
-
<div class="list-group
|
|
244
|
-
<
|
|
245
|
-
|
|
246
|
-
|
|
235
|
+
<div class="list-group">
|
|
236
|
+
<div class="list-group-item">
|
|
237
|
+
<span class="badge pull-right">123</span>
|
|
238
|
+
<h4 class="list-group-item-heading">
|
|
239
|
+
<a>Locations</a>
|
|
240
|
+
</h4>
|
|
241
|
+
<p class="list-group-item-text text-muted">Hierarchical geographic locations</p>
|
|
242
|
+
</div>
|
|
243
|
+
<div class="list-group-item">
|
|
244
|
+
<span class="badge pull-right"><i class="mdi mdi-lock"></i></span>
|
|
245
|
+
<h4 class="list-group-item-heading">Tenants</h4>
|
|
246
|
+
<p class="list-group-item-text text-muted">Customers or departments</p>
|
|
247
|
+
</div>
|
|
247
248
|
</div>
|
|
248
249
|
</div>
|
|
249
250
|
</div>
|
|
250
|
-
</div>
|
|
251
251
|
<!-- End example of home page panel -->
|
|
252
|
-
</div>
|
|
253
|
-
</div>
|
|
254
|
-
<hr>
|
|
255
|
-
|
|
256
|
-
<div class="row">
|
|
257
|
-
<div class="col-md-6">
|
|
258
|
-
<h1>Buttons</h1>
|
|
259
|
-
<div class="panel panel-default">
|
|
260
|
-
<table class="table table-hover panel-body attr-table">
|
|
261
|
-
<tr>
|
|
262
|
-
<td><code>btn-lg</code></td>
|
|
263
|
-
<td>
|
|
264
|
-
<button type="button" class="btn btn-lg btn-default">Default</button>
|
|
265
|
-
<button type="button" class="btn btn-lg btn-primary">Primary</button>
|
|
266
|
-
<button type="button" class="btn btn-lg btn-success">Success</button>
|
|
267
|
-
<button type="button" class="btn btn-lg btn-info">Info</button>
|
|
268
|
-
<button type="button" class="btn btn-lg btn-warning">Warning</button>
|
|
269
|
-
<button type="button" class="btn btn-lg btn-danger">Danger</button>
|
|
270
|
-
<button type="button" class="btn btn-lg btn-link">Link</button>
|
|
271
|
-
</td>
|
|
272
|
-
</tr>
|
|
273
|
-
<tr>
|
|
274
|
-
<td><code>btn</code></td>
|
|
275
|
-
<td>
|
|
276
|
-
<button type="button" class="btn btn-default">Default</button>
|
|
277
|
-
<button type="button" class="btn btn-primary">Primary</button>
|
|
278
|
-
<button type="button" class="btn btn-success">Success</button>
|
|
279
|
-
<button type="button" class="btn btn-info">Info</button>
|
|
280
|
-
<button type="button" class="btn btn-warning">Warning</button>
|
|
281
|
-
<button type="button" class="btn btn-danger">Danger</button>
|
|
282
|
-
<button type="button" class="btn btn-link">Link</button>
|
|
283
|
-
</td>
|
|
284
|
-
</tr>
|
|
285
|
-
<tr>
|
|
286
|
-
<td><code>btn-sm</code></td>
|
|
287
|
-
<td>
|
|
288
|
-
<button type="button" class="btn btn-sm btn-default">Default</button>
|
|
289
|
-
<button type="button" class="btn btn-sm btn-primary">Primary</button>
|
|
290
|
-
<button type="button" class="btn btn-sm btn-success">Success</button>
|
|
291
|
-
<button type="button" class="btn btn-sm btn-info">Info</button>
|
|
292
|
-
<button type="button" class="btn btn-sm btn-warning">Warning</button>
|
|
293
|
-
<button type="button" class="btn btn-sm btn-danger">Danger</button>
|
|
294
|
-
<button type="button" class="btn btn-sm btn-link">Link</button>
|
|
295
|
-
</td>
|
|
296
|
-
</tr>
|
|
297
|
-
<tr>
|
|
298
|
-
<td><code>btn-xs</code></td>
|
|
299
|
-
<td>
|
|
300
|
-
<button type="button" class="btn btn-xs btn-default">Default</button>
|
|
301
|
-
<button type="button" class="btn btn-xs btn-primary">Primary</button>
|
|
302
|
-
<button type="button" class="btn btn-xs btn-success">Success</button>
|
|
303
|
-
<button type="button" class="btn btn-xs btn-info">Info</button>
|
|
304
|
-
<button type="button" class="btn btn-xs btn-warning">Warning</button>
|
|
305
|
-
<button type="button" class="btn btn-xs btn-danger">Danger</button>
|
|
306
|
-
<button type="button" class="btn btn-xs btn-link">Link</button>
|
|
307
|
-
</td>
|
|
308
|
-
</tr>
|
|
309
|
-
<tr>
|
|
310
|
-
<td><code>btn disabled</code></td>
|
|
311
|
-
<td>
|
|
312
|
-
<button type="button" class="btn btn-default disabled">Default</button>
|
|
313
|
-
<button type="button" class="btn btn-primary disabled">Primary</button>
|
|
314
|
-
<button type="button" class="btn btn-success disabled">Success</button>
|
|
315
|
-
<button type="button" class="btn btn-info disabled">Info</button>
|
|
316
|
-
<button type="button" class="btn btn-warning disabled">Warning</button>
|
|
317
|
-
<button type="button" class="btn btn-danger disabled">Danger</button>
|
|
318
|
-
<button type="button" class="btn btn-link disabled">Link</button>
|
|
319
|
-
</td>
|
|
320
|
-
</tr>
|
|
321
|
-
</table>
|
|
322
|
-
</div>
|
|
323
|
-
</div>
|
|
324
|
-
<div class="col-md-6">
|
|
325
|
-
<h1>Headings and Labels</h1>
|
|
326
|
-
<div class="panel panel-default">
|
|
327
|
-
<div class="panel-body">
|
|
328
|
-
<h1>
|
|
329
|
-
h1. Heading 1
|
|
330
|
-
<small>title for most object views</small>
|
|
331
|
-
<span class="label label-default">Default</span>
|
|
332
|
-
<span class="label label-primary">Primary</span>
|
|
333
|
-
<span class="label label-transparent">Transparent</span>
|
|
334
|
-
<span class="label label-success">Success</span>
|
|
335
|
-
<span class="label label-info">Info</span>
|
|
336
|
-
<span class="label label-warning">Warning</span>
|
|
337
|
-
<span class="label label-danger">Danger</span>
|
|
338
|
-
</h1>
|
|
339
|
-
<h2>
|
|
340
|
-
h2. Heading 2
|
|
341
|
-
<small>used for special purposes such as Location detail "badges"</small>
|
|
342
|
-
<span class="label label-default">Default</span>
|
|
343
|
-
<span class="label label-primary">Primary</span>
|
|
344
|
-
<span class="label label-transparent">Transparent</span>
|
|
345
|
-
<span class="label label-success">Success</span>
|
|
346
|
-
<span class="label label-info">Info</span>
|
|
347
|
-
<span class="label label-warning">Warning</span>
|
|
348
|
-
<span class="label label-danger">Danger</span>
|
|
349
|
-
</h2>
|
|
350
|
-
<h3>
|
|
351
|
-
h3. Heading 3
|
|
352
|
-
<small>title for object create/edit forms</small>
|
|
353
|
-
<span class="label label-default">Default</span>
|
|
354
|
-
<span class="label label-primary">Primary</span>
|
|
355
|
-
<span class="label label-transparent">Transparent</span>
|
|
356
|
-
<span class="label label-success">Success</span>
|
|
357
|
-
<span class="label label-info">Info</span>
|
|
358
|
-
<span class="label label-warning">Warning</span>
|
|
359
|
-
<span class="label label-danger">Danger</span>
|
|
360
|
-
</h3>
|
|
361
|
-
<h4>
|
|
362
|
-
h4. Heading 4
|
|
363
|
-
<small>used in modal titles and a few others</small>
|
|
364
|
-
<span class="label label-default">Default</span>
|
|
365
|
-
<span class="label label-primary">Primary</span>
|
|
366
|
-
<span class="label label-transparent">Transparent</span>
|
|
367
|
-
<span class="label label-success">Success</span>
|
|
368
|
-
<span class="label label-info">Info</span>
|
|
369
|
-
<span class="label label-warning">Warning</span>
|
|
370
|
-
<span class="label label-danger">Danger</span>
|
|
371
|
-
</h4>
|
|
372
|
-
<h5>
|
|
373
|
-
h5. Heading 5
|
|
374
|
-
<small>used in user profiles and cable traces</small>
|
|
375
|
-
<span class="label label-default">Default</span>
|
|
376
|
-
<span class="label label-primary">Primary</span>
|
|
377
|
-
<span class="label label-transparent">Transparent</span>
|
|
378
|
-
<span class="label label-success">Success</span>
|
|
379
|
-
<span class="label label-info">Info</span>
|
|
380
|
-
<span class="label label-warning">Warning</span>
|
|
381
|
-
<span class="label label-danger">Danger</span>
|
|
382
|
-
</h5>
|
|
383
|
-
<h6>
|
|
384
|
-
h6. Heading 6
|
|
385
|
-
<small>Unused in core</small>
|
|
386
|
-
<span class="label label-default">Default</span>
|
|
387
|
-
<span class="label label-primary">Primary</span>
|
|
388
|
-
<span class="label label-transparent">Transparent</span>
|
|
389
|
-
<span class="label label-success">Success</span>
|
|
390
|
-
<span class="label label-info">Info</span>
|
|
391
|
-
<span class="label label-warning">Warning</span>
|
|
392
|
-
<span class="label label-danger">Danger</span>
|
|
393
|
-
</h6>
|
|
394
|
-
<p>
|
|
395
|
-
p. Paragraph
|
|
396
|
-
<small>Small text</small>
|
|
397
|
-
<span class="label label-default">Default</span>
|
|
398
|
-
<span class="label label-primary">Primary</span>
|
|
399
|
-
<span class="label label-transparent">Transparent</span>
|
|
400
|
-
<span class="label label-success">Success</span>
|
|
401
|
-
<span class="label label-info">Info</span>
|
|
402
|
-
<span class="label label-warning">Warning</span>
|
|
403
|
-
<span class="label label-danger">Danger</span>
|
|
404
|
-
</p>
|
|
405
|
-
</div>
|
|
406
252
|
</div>
|
|
407
253
|
</div>
|
|
408
|
-
|
|
409
|
-
<hr>
|
|
254
|
+
<hr>
|
|
410
255
|
|
|
411
|
-
<
|
|
412
|
-
<div class="
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
<div class="panel-heading">Heading Text</div>
|
|
417
|
-
<table class="table table-hover table-headings">
|
|
418
|
-
<thead>
|
|
419
|
-
<tr>
|
|
420
|
-
<th>#</th>
|
|
421
|
-
<th>First Name</th>
|
|
422
|
-
<th>Last Name</th>
|
|
423
|
-
<th>Username</th>
|
|
424
|
-
</tr>
|
|
425
|
-
</thead>
|
|
426
|
-
<tbody>
|
|
427
|
-
<tr>
|
|
428
|
-
<td>1</td>
|
|
429
|
-
<td>Mark</td>
|
|
430
|
-
<td>Otto</td>
|
|
431
|
-
<td>@mdo</td>
|
|
432
|
-
</tr>
|
|
256
|
+
<div class="row">
|
|
257
|
+
<div class="col-md-6">
|
|
258
|
+
<h1>Buttons</h1>
|
|
259
|
+
<div class="panel panel-default">
|
|
260
|
+
<table class="table table-hover panel-body attr-table">
|
|
433
261
|
<tr>
|
|
434
|
-
<td>
|
|
435
|
-
<td>
|
|
436
|
-
|
|
437
|
-
|
|
262
|
+
<td><code>btn-lg</code></td>
|
|
263
|
+
<td>
|
|
264
|
+
<button type="button" class="btn btn-lg btn-default">Default</button>
|
|
265
|
+
<button type="button" class="btn btn-lg btn-primary">Primary</button>
|
|
266
|
+
<button type="button" class="btn btn-lg btn-success">Success</button>
|
|
267
|
+
<button type="button" class="btn btn-lg btn-info">Info</button>
|
|
268
|
+
<button type="button" class="btn btn-lg btn-warning">Warning</button>
|
|
269
|
+
<button type="button" class="btn btn-lg btn-danger">Danger</button>
|
|
270
|
+
<button type="button" class="btn btn-lg btn-link">Link</button>
|
|
271
|
+
</td>
|
|
438
272
|
</tr>
|
|
439
273
|
<tr>
|
|
440
|
-
<td>
|
|
441
|
-
<td>
|
|
442
|
-
|
|
443
|
-
|
|
274
|
+
<td><code>btn</code></td>
|
|
275
|
+
<td>
|
|
276
|
+
<button type="button" class="btn btn-default">Default</button>
|
|
277
|
+
<button type="button" class="btn btn-primary">Primary</button>
|
|
278
|
+
<button type="button" class="btn btn-success">Success</button>
|
|
279
|
+
<button type="button" class="btn btn-info">Info</button>
|
|
280
|
+
<button type="button" class="btn btn-warning">Warning</button>
|
|
281
|
+
<button type="button" class="btn btn-danger">Danger</button>
|
|
282
|
+
<button type="button" class="btn btn-link">Link</button>
|
|
283
|
+
</td>
|
|
444
284
|
</tr>
|
|
445
|
-
</tbody>
|
|
446
|
-
</table>
|
|
447
|
-
</div>
|
|
448
|
-
</div>
|
|
449
|
-
<div class="col-md-6">
|
|
450
|
-
<h2>Condensed Table (use with caution)</h2>
|
|
451
|
-
<div class="panel panel-default">
|
|
452
|
-
<table class="table table-condensed table-hover table-headings">
|
|
453
|
-
<thead>
|
|
454
285
|
<tr>
|
|
455
|
-
<
|
|
456
|
-
<
|
|
457
|
-
|
|
458
|
-
|
|
286
|
+
<td><code>btn-sm</code></td>
|
|
287
|
+
<td>
|
|
288
|
+
<button type="button" class="btn btn-sm btn-default">Default</button>
|
|
289
|
+
<button type="button" class="btn btn-sm btn-primary">Primary</button>
|
|
290
|
+
<button type="button" class="btn btn-sm btn-success">Success</button>
|
|
291
|
+
<button type="button" class="btn btn-sm btn-info">Info</button>
|
|
292
|
+
<button type="button" class="btn btn-sm btn-warning">Warning</button>
|
|
293
|
+
<button type="button" class="btn btn-sm btn-danger">Danger</button>
|
|
294
|
+
<button type="button" class="btn btn-sm btn-link">Link</button>
|
|
295
|
+
</td>
|
|
459
296
|
</tr>
|
|
460
|
-
</thead>
|
|
461
|
-
<tbody>
|
|
462
297
|
<tr>
|
|
463
|
-
<td>
|
|
464
|
-
<td>
|
|
465
|
-
|
|
466
|
-
|
|
298
|
+
<td><code>btn-xs</code></td>
|
|
299
|
+
<td>
|
|
300
|
+
<button type="button" class="btn btn-xs btn-default">Default</button>
|
|
301
|
+
<button type="button" class="btn btn-xs btn-primary">Primary</button>
|
|
302
|
+
<button type="button" class="btn btn-xs btn-success">Success</button>
|
|
303
|
+
<button type="button" class="btn btn-xs btn-info">Info</button>
|
|
304
|
+
<button type="button" class="btn btn-xs btn-warning">Warning</button>
|
|
305
|
+
<button type="button" class="btn btn-xs btn-danger">Danger</button>
|
|
306
|
+
<button type="button" class="btn btn-xs btn-link">Link</button>
|
|
307
|
+
</td>
|
|
467
308
|
</tr>
|
|
468
309
|
<tr>
|
|
469
|
-
<td>
|
|
470
|
-
<td>
|
|
471
|
-
|
|
472
|
-
|
|
310
|
+
<td><code>btn disabled</code></td>
|
|
311
|
+
<td>
|
|
312
|
+
<button type="button" class="btn btn-default disabled">Default</button>
|
|
313
|
+
<button type="button" class="btn btn-primary disabled">Primary</button>
|
|
314
|
+
<button type="button" class="btn btn-success disabled">Success</button>
|
|
315
|
+
<button type="button" class="btn btn-info disabled">Info</button>
|
|
316
|
+
<button type="button" class="btn btn-warning disabled">Warning</button>
|
|
317
|
+
<button type="button" class="btn btn-danger disabled">Danger</button>
|
|
318
|
+
<button type="button" class="btn btn-link disabled">Link</button>
|
|
319
|
+
</td>
|
|
473
320
|
</tr>
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
<td colspan="2">Larry the Bird</td>
|
|
477
|
-
<td>@twitter</td>
|
|
478
|
-
</tr>
|
|
479
|
-
</tbody>
|
|
480
|
-
</table>
|
|
321
|
+
</table>
|
|
322
|
+
</div>
|
|
481
323
|
</div>
|
|
482
|
-
|
|
483
|
-
</
|
|
484
|
-
<div class="
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
324
|
+
<div class="col-md-6">
|
|
325
|
+
<h1>Headings and Labels</h1>
|
|
326
|
+
<div class="panel panel-default">
|
|
327
|
+
<div class="panel-body">
|
|
328
|
+
<h1>
|
|
329
|
+
h1. Heading 1
|
|
330
|
+
<small>title for most object views</small>
|
|
331
|
+
<span class="label label-default">Default</span>
|
|
332
|
+
<span class="label label-primary">Primary</span>
|
|
333
|
+
<span class="label label-transparent">Transparent</span>
|
|
334
|
+
<span class="label label-success">Success</span>
|
|
335
|
+
<span class="label label-info">Info</span>
|
|
336
|
+
<span class="label label-warning">Warning</span>
|
|
337
|
+
<span class="label label-danger">Danger</span>
|
|
338
|
+
</h1>
|
|
339
|
+
<h2>
|
|
340
|
+
h2. Heading 2
|
|
341
|
+
<small>used for special purposes such as Location detail "badges"</small>
|
|
342
|
+
<span class="label label-default">Default</span>
|
|
343
|
+
<span class="label label-primary">Primary</span>
|
|
344
|
+
<span class="label label-transparent">Transparent</span>
|
|
345
|
+
<span class="label label-success">Success</span>
|
|
346
|
+
<span class="label label-info">Info</span>
|
|
347
|
+
<span class="label label-warning">Warning</span>
|
|
348
|
+
<span class="label label-danger">Danger</span>
|
|
349
|
+
</h2>
|
|
350
|
+
<h3>
|
|
351
|
+
h3. Heading 3
|
|
352
|
+
<small>title for object create/edit forms</small>
|
|
353
|
+
<span class="label label-default">Default</span>
|
|
354
|
+
<span class="label label-primary">Primary</span>
|
|
355
|
+
<span class="label label-transparent">Transparent</span>
|
|
356
|
+
<span class="label label-success">Success</span>
|
|
357
|
+
<span class="label label-info">Info</span>
|
|
358
|
+
<span class="label label-warning">Warning</span>
|
|
359
|
+
<span class="label label-danger">Danger</span>
|
|
360
|
+
</h3>
|
|
361
|
+
<h4>
|
|
362
|
+
h4. Heading 4
|
|
363
|
+
<small>used in modal titles and a few others</small>
|
|
364
|
+
<span class="label label-default">Default</span>
|
|
365
|
+
<span class="label label-primary">Primary</span>
|
|
366
|
+
<span class="label label-transparent">Transparent</span>
|
|
367
|
+
<span class="label label-success">Success</span>
|
|
368
|
+
<span class="label label-info">Info</span>
|
|
369
|
+
<span class="label label-warning">Warning</span>
|
|
370
|
+
<span class="label label-danger">Danger</span>
|
|
371
|
+
</h4>
|
|
372
|
+
<h5>
|
|
373
|
+
h5. Heading 5
|
|
374
|
+
<small>used in user profiles and cable traces</small>
|
|
375
|
+
<span class="label label-default">Default</span>
|
|
376
|
+
<span class="label label-primary">Primary</span>
|
|
377
|
+
<span class="label label-transparent">Transparent</span>
|
|
378
|
+
<span class="label label-success">Success</span>
|
|
379
|
+
<span class="label label-info">Info</span>
|
|
380
|
+
<span class="label label-warning">Warning</span>
|
|
381
|
+
<span class="label label-danger">Danger</span>
|
|
382
|
+
</h5>
|
|
383
|
+
<h6>
|
|
384
|
+
h6. Heading 6
|
|
385
|
+
<small>Unused in core</small>
|
|
386
|
+
<span class="label label-default">Default</span>
|
|
387
|
+
<span class="label label-primary">Primary</span>
|
|
388
|
+
<span class="label label-transparent">Transparent</span>
|
|
389
|
+
<span class="label label-success">Success</span>
|
|
390
|
+
<span class="label label-info">Info</span>
|
|
391
|
+
<span class="label label-warning">Warning</span>
|
|
392
|
+
<span class="label label-danger">Danger</span>
|
|
393
|
+
</h6>
|
|
394
|
+
<p>
|
|
395
|
+
p. Paragraph
|
|
396
|
+
<small>Small text</small>
|
|
397
|
+
<span class="label label-default">Default</span>
|
|
398
|
+
<span class="label label-primary">Primary</span>
|
|
399
|
+
<span class="label label-transparent">Transparent</span>
|
|
400
|
+
<span class="label label-success">Success</span>
|
|
401
|
+
<span class="label label-info">Info</span>
|
|
402
|
+
<span class="label label-warning">Warning</span>
|
|
403
|
+
<span class="label label-danger">Danger</span>
|
|
404
|
+
</p>
|
|
405
|
+
</div>
|
|
406
|
+
</div>
|
|
503
407
|
</div>
|
|
504
408
|
</div>
|
|
505
|
-
<
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
409
|
+
<hr>
|
|
410
|
+
|
|
411
|
+
<h1>Tables</h1>
|
|
412
|
+
<div class="row">
|
|
413
|
+
<div class="col-md-6">
|
|
414
|
+
<h2>Panel Table With Heading</h2>
|
|
415
|
+
<div class="panel panel-default">
|
|
416
|
+
<div class="panel-heading">Heading Text</div>
|
|
417
|
+
<table class="table table-hover table-headings">
|
|
418
|
+
<thead>
|
|
419
|
+
<tr>
|
|
420
|
+
<th>#</th>
|
|
421
|
+
<th>First Name</th>
|
|
422
|
+
<th>Last Name</th>
|
|
423
|
+
<th>Username</th>
|
|
424
|
+
</tr>
|
|
425
|
+
</thead>
|
|
426
|
+
<tbody>
|
|
427
|
+
<tr>
|
|
428
|
+
<td>1</td>
|
|
429
|
+
<td>Mark</td>
|
|
430
|
+
<td>Otto</td>
|
|
431
|
+
<td>@mdo</td>
|
|
432
|
+
</tr>
|
|
433
|
+
<tr>
|
|
434
|
+
<td>2</td>
|
|
435
|
+
<td>Jacob</td>
|
|
436
|
+
<td>Thornton</td>
|
|
437
|
+
<td>@fat</td>
|
|
438
|
+
</tr>
|
|
439
|
+
<tr>
|
|
440
|
+
<td>3</td>
|
|
441
|
+
<td>Larry</td>
|
|
442
|
+
<td>the Bird</td>
|
|
443
|
+
<td>@twitter</td>
|
|
444
|
+
</tr>
|
|
445
|
+
</tbody>
|
|
446
|
+
</table>
|
|
447
|
+
</div>
|
|
522
448
|
</div>
|
|
523
|
-
|
|
524
|
-
</
|
|
525
|
-
<div class="
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
<
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
<
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
</tr>
|
|
557
|
-
</tbody>
|
|
558
|
-
</table>
|
|
449
|
+
<div class="col-md-6">
|
|
450
|
+
<h2>Condensed Table (use with caution)</h2>
|
|
451
|
+
<div class="panel panel-default">
|
|
452
|
+
<table class="table table-condensed table-hover table-headings">
|
|
453
|
+
<thead>
|
|
454
|
+
<tr>
|
|
455
|
+
<th>#</th>
|
|
456
|
+
<th>First Name</th>
|
|
457
|
+
<th>Last Name</th>
|
|
458
|
+
<th>Username</th>
|
|
459
|
+
</tr>
|
|
460
|
+
</thead>
|
|
461
|
+
<tbody>
|
|
462
|
+
<tr>
|
|
463
|
+
<td>1</td>
|
|
464
|
+
<td>Mark</td>
|
|
465
|
+
<td>Otto</td>
|
|
466
|
+
<td>@mdo</td>
|
|
467
|
+
</tr>
|
|
468
|
+
<tr>
|
|
469
|
+
<td>2</td>
|
|
470
|
+
<td>Jacob</td>
|
|
471
|
+
<td>Thornton</td>
|
|
472
|
+
<td>@fat</td>
|
|
473
|
+
</tr>
|
|
474
|
+
<tr>
|
|
475
|
+
<td>3</td>
|
|
476
|
+
<td colspan="2">Larry the Bird</td>
|
|
477
|
+
<td>@twitter</td>
|
|
478
|
+
</tr>
|
|
479
|
+
</tbody>
|
|
480
|
+
</table>
|
|
481
|
+
</div>
|
|
559
482
|
</div>
|
|
560
483
|
</div>
|
|
561
|
-
<div class="
|
|
562
|
-
<
|
|
563
|
-
|
|
564
|
-
<
|
|
565
|
-
<
|
|
566
|
-
|
|
567
|
-
<th>#</th>
|
|
568
|
-
<th>First Name</th>
|
|
569
|
-
<th>Last Name</th>
|
|
570
|
-
<th>Username</th>
|
|
571
|
-
</tr>
|
|
572
|
-
</thead>
|
|
573
|
-
<tbody>
|
|
574
|
-
<tr>
|
|
575
|
-
<td rowspan="2">1</td>
|
|
576
|
-
<td>Mark</td>
|
|
577
|
-
<td>Otto</td>
|
|
578
|
-
<td>@mdo</td>
|
|
579
|
-
</tr>
|
|
484
|
+
<div class="row">
|
|
485
|
+
<div class="col-md-6">
|
|
486
|
+
<h2>Attribute Table for Object Detail View</h2>
|
|
487
|
+
<div class="panel panel-default">
|
|
488
|
+
<div class="panel-heading">Object Attributes</div>
|
|
489
|
+
<table class="table table-hover panel-body attr-table">
|
|
580
490
|
<tr>
|
|
581
|
-
<td>
|
|
582
|
-
<td>
|
|
583
|
-
<td>@TwBootstrap</td>
|
|
491
|
+
<td>Attribute</td>
|
|
492
|
+
<td>Value</td>
|
|
584
493
|
</tr>
|
|
585
494
|
<tr>
|
|
586
|
-
<td>
|
|
587
|
-
<td>
|
|
588
|
-
<td>Thornton</td>
|
|
589
|
-
<td>@fat</td>
|
|
495
|
+
<td>Attribute</td>
|
|
496
|
+
<td>Value</td>
|
|
590
497
|
</tr>
|
|
591
498
|
<tr>
|
|
592
|
-
<td>
|
|
593
|
-
<td
|
|
594
|
-
<td>@twitter</td>
|
|
499
|
+
<td>Attribute</td>
|
|
500
|
+
<td>Value</td>
|
|
595
501
|
</tr>
|
|
596
|
-
</
|
|
597
|
-
</
|
|
598
|
-
</div>
|
|
599
|
-
</div>
|
|
600
|
-
</div>
|
|
601
|
-
<hr>
|
|
602
|
-
|
|
603
|
-
<div class="row">
|
|
604
|
-
<div class="col-sm-6">
|
|
605
|
-
<h1>Alerts</h1>
|
|
606
|
-
<div class="alert alert-success" role="alert">
|
|
607
|
-
<strong>Well done!</strong> You successfully read this important alert message.
|
|
502
|
+
</table>
|
|
503
|
+
</div>
|
|
608
504
|
</div>
|
|
609
|
-
<div class="
|
|
610
|
-
<
|
|
505
|
+
<div class="col-md-6">
|
|
506
|
+
<h2>Table with colored rows</h2>
|
|
507
|
+
<div class="panel panel-default">
|
|
508
|
+
<table class="table table-hover panel-body table-headings">
|
|
509
|
+
<thead>
|
|
510
|
+
<tr>
|
|
511
|
+
<th>Class</th>
|
|
512
|
+
</tr>
|
|
513
|
+
</thead>
|
|
514
|
+
<tbody>
|
|
515
|
+
<tr class="active"><td>Active</td></tr>
|
|
516
|
+
<tr class="success"><td>Success</td></tr>
|
|
517
|
+
<tr class="info"><td>Info</td></tr>
|
|
518
|
+
<tr class="warning"><td>Warning</td></tr>
|
|
519
|
+
<tr class="danger"><td>Danger</td></tr>
|
|
520
|
+
</tbody>
|
|
521
|
+
</table>
|
|
522
|
+
</div>
|
|
611
523
|
</div>
|
|
612
|
-
|
|
613
|
-
|
|
524
|
+
</div>
|
|
525
|
+
<div class="row">
|
|
526
|
+
<div class="col-md-6">
|
|
527
|
+
<h2>Striped Table (not generally recommended)</h2>
|
|
528
|
+
<div class="panel panel-default">
|
|
529
|
+
<table class="table table-striped table-hover table-headings">
|
|
530
|
+
<thead>
|
|
531
|
+
<tr>
|
|
532
|
+
<th>#</th>
|
|
533
|
+
<th>First Name</th>
|
|
534
|
+
<th>Last Name</th>
|
|
535
|
+
<th>Username</th>
|
|
536
|
+
</tr>
|
|
537
|
+
</thead>
|
|
538
|
+
<tbody>
|
|
539
|
+
<tr>
|
|
540
|
+
<td>1</td>
|
|
541
|
+
<td>Mark</td>
|
|
542
|
+
<td>Otto</td>
|
|
543
|
+
<td>@mdo</td>
|
|
544
|
+
</tr>
|
|
545
|
+
<tr>
|
|
546
|
+
<td>2</td>
|
|
547
|
+
<td>Jacob</td>
|
|
548
|
+
<td>Thornton</td>
|
|
549
|
+
<td>@fat</td>
|
|
550
|
+
</tr>
|
|
551
|
+
<tr>
|
|
552
|
+
<td>3</td>
|
|
553
|
+
<td>Larry</td>
|
|
554
|
+
<td>the Bird</td>
|
|
555
|
+
<td>@twitter</td>
|
|
556
|
+
</tr>
|
|
557
|
+
</tbody>
|
|
558
|
+
</table>
|
|
559
|
+
</div>
|
|
614
560
|
</div>
|
|
615
|
-
<div class="
|
|
616
|
-
<
|
|
561
|
+
<div class="col-md-6">
|
|
562
|
+
<h2>Bordered Table (not generally recommended)</h2>
|
|
563
|
+
<div class="panel panel-default">
|
|
564
|
+
<table class="table table-bordered table-hover table-headings">
|
|
565
|
+
<thead>
|
|
566
|
+
<tr>
|
|
567
|
+
<th>#</th>
|
|
568
|
+
<th>First Name</th>
|
|
569
|
+
<th>Last Name</th>
|
|
570
|
+
<th>Username</th>
|
|
571
|
+
</tr>
|
|
572
|
+
</thead>
|
|
573
|
+
<tbody>
|
|
574
|
+
<tr>
|
|
575
|
+
<td rowspan="2">1</td>
|
|
576
|
+
<td>Mark</td>
|
|
577
|
+
<td>Otto</td>
|
|
578
|
+
<td>@mdo</td>
|
|
579
|
+
</tr>
|
|
580
|
+
<tr>
|
|
581
|
+
<td>Mark</td>
|
|
582
|
+
<td>Otto</td>
|
|
583
|
+
<td>@TwBootstrap</td>
|
|
584
|
+
</tr>
|
|
585
|
+
<tr>
|
|
586
|
+
<td>2</td>
|
|
587
|
+
<td>Jacob</td>
|
|
588
|
+
<td>Thornton</td>
|
|
589
|
+
<td>@fat</td>
|
|
590
|
+
</tr>
|
|
591
|
+
<tr>
|
|
592
|
+
<td>3</td>
|
|
593
|
+
<td colspan="2">Larry the Bird</td>
|
|
594
|
+
<td>@twitter</td>
|
|
595
|
+
</tr>
|
|
596
|
+
</tbody>
|
|
597
|
+
</table>
|
|
598
|
+
</div>
|
|
617
599
|
</div>
|
|
618
600
|
</div>
|
|
601
|
+
<hr>
|
|
602
|
+
|
|
603
|
+
<div class="row">
|
|
604
|
+
<div class="col-sm-6">
|
|
605
|
+
<h1>Alerts</h1>
|
|
606
|
+
<div class="alert alert-success" role="alert">
|
|
607
|
+
<strong>Well done!</strong> You successfully read this important alert message.
|
|
608
|
+
</div>
|
|
609
|
+
<div class="alert alert-info" role="alert">
|
|
610
|
+
<strong>Heads up!</strong> This alert needs your attention, but it's not super important.
|
|
611
|
+
</div>
|
|
612
|
+
<div class="alert alert-warning" role="alert">
|
|
613
|
+
<strong>Warning!</strong> Best check yo self, you're not looking too good.
|
|
614
|
+
</div>
|
|
615
|
+
<div class="alert alert-danger" role="alert">
|
|
616
|
+
<strong>Oh snap!</strong> Change a few things up and try submitting again.
|
|
617
|
+
</div>
|
|
618
|
+
</div>
|
|
619
619
|
|
|
620
|
-
|
|
621
|
-
|
|
620
|
+
<div class="col-sm-6">
|
|
621
|
+
<h1>Text Markup</h1>
|
|
622
622
|
<pre>def hello():
|
|
623
623
|
print("Hello World!")
|
|
624
624
|
raise SystemExit()</pre>
|
|
625
|
-
|
|
626
|
-
|
|
625
|
+
<div class="row">
|
|
626
|
+
<div class="col-sm-6">
|
|
627
627
|
<pre><code class="language-json">{
|
|
628
628
|
"This": [
|
|
629
629
|
"is",
|
|
@@ -633,8 +633,8 @@
|
|
|
633
633
|
"highlighting."
|
|
634
634
|
]
|
|
635
635
|
}</code></pre>
|
|
636
|
-
|
|
637
|
-
|
|
636
|
+
</div>
|
|
637
|
+
<div class="col-sm-6">
|
|
638
638
|
<pre><code class="language-yaml">---
|
|
639
639
|
This:
|
|
640
640
|
- is
|
|
@@ -642,288 +642,288 @@ This:
|
|
|
642
642
|
- with
|
|
643
643
|
- syntax
|
|
644
644
|
- highlighting.</code></pre>
|
|
645
|
+
</div>
|
|
646
|
+
</div>
|
|
647
|
+
<div>
|
|
648
|
+
This is some ordinary text.
|
|
649
|
+
<span class="text-muted">This is some muted text.</span>
|
|
650
|
+
<span class="text-primary">This is primary text.</span>
|
|
651
|
+
<span class="text-success">This is success text.</span>
|
|
652
|
+
<span class="text-info">This is info text.</span>
|
|
653
|
+
<span class="text-warning">This is warning text.</span>
|
|
654
|
+
<span class="text-danger">This is danger text.</span>
|
|
655
|
+
<code>This is code text.</code>
|
|
656
|
+
<kbd>This is kbd text.</kbd>
|
|
657
|
+
<span class="bg-primary">This is text with a primary background.</span>
|
|
658
|
+
<span class="bg-success">This is text with a success background.</span>
|
|
659
|
+
<span class="bg-info">This is text with a info background.</span>
|
|
660
|
+
<span class="bg-warning">This is text with a warning background.</span>
|
|
661
|
+
<span class="bg-danger">This is text with a danger background.</span>
|
|
645
662
|
</div>
|
|
646
|
-
</div>
|
|
647
|
-
<div>
|
|
648
|
-
This is some ordinary text.
|
|
649
|
-
<span class="text-muted">This is some muted text.</span>
|
|
650
|
-
<span class="text-primary">This is primary text.</span>
|
|
651
|
-
<span class="text-success">This is success text.</span>
|
|
652
|
-
<span class="text-info">This is info text.</span>
|
|
653
|
-
<span class="text-warning">This is warning text.</span>
|
|
654
|
-
<span class="text-danger">This is danger text.</span>
|
|
655
|
-
<code>This is code text.</code>
|
|
656
|
-
<kbd>This is kbd text.</kbd>
|
|
657
|
-
<span class="bg-primary">This is text with a primary background.</span>
|
|
658
|
-
<span class="bg-success">This is text with a success background.</span>
|
|
659
|
-
<span class="bg-info">This is text with a info background.</span>
|
|
660
|
-
<span class="bg-warning">This is text with a warning background.</span>
|
|
661
|
-
<span class="bg-danger">This is text with a danger background.</span>
|
|
662
663
|
</div>
|
|
663
664
|
</div>
|
|
664
|
-
|
|
665
|
-
<hr>
|
|
665
|
+
<hr>
|
|
666
666
|
|
|
667
|
-
<h1>Panels</h1>
|
|
668
|
-
<div class="row">
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
667
|
+
<h1>Panels</h1>
|
|
668
|
+
<div class="row">
|
|
669
|
+
<div class="col-sm-4">
|
|
670
|
+
<div class="panel panel-default">
|
|
671
|
+
<div class="panel-heading">
|
|
672
|
+
<h3 class="panel-title">Default</h3>
|
|
673
|
+
</div>
|
|
674
|
+
<div class="panel-body">
|
|
675
|
+
Panel content
|
|
676
|
+
</div>
|
|
676
677
|
</div>
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
678
|
+
<div class="panel panel-primary">
|
|
679
|
+
<div class="panel-heading">
|
|
680
|
+
<h3 class="panel-title">Primary</h3>
|
|
681
|
+
</div>
|
|
682
|
+
<div class="panel-body">
|
|
683
|
+
Panel content
|
|
684
|
+
</div>
|
|
685
|
+
<div class="panel-footer">
|
|
686
|
+
Panel footer
|
|
687
|
+
</div>
|
|
681
688
|
</div>
|
|
682
|
-
|
|
683
|
-
|
|
689
|
+
</div><!-- /.col-sm-4 -->
|
|
690
|
+
<div class="col-sm-4">
|
|
691
|
+
<div class="panel panel-success">
|
|
692
|
+
<div class="panel-heading">
|
|
693
|
+
<h3 class="panel-title">Success</h3>
|
|
694
|
+
</div>
|
|
695
|
+
<div class="panel-body">
|
|
696
|
+
Panel content
|
|
697
|
+
</div>
|
|
684
698
|
</div>
|
|
685
|
-
<div class="panel-
|
|
686
|
-
|
|
699
|
+
<div class="panel panel-info">
|
|
700
|
+
<div class="panel-heading">
|
|
701
|
+
<h3 class="panel-title">Info</h3>
|
|
702
|
+
</div>
|
|
703
|
+
<div class="panel-body">
|
|
704
|
+
Panel content
|
|
705
|
+
</div>
|
|
706
|
+
<div class="panel-footer">
|
|
707
|
+
Panel footer
|
|
708
|
+
</div>
|
|
687
709
|
</div>
|
|
688
|
-
</div
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
710
|
+
</div><!-- /.col-sm-4 -->
|
|
711
|
+
<div class="col-sm-4">
|
|
712
|
+
<div class="panel panel-warning">
|
|
713
|
+
<div class="panel-heading">
|
|
714
|
+
<h3 class="panel-title">Warning</h3>
|
|
715
|
+
</div>
|
|
716
|
+
<div class="panel-body">
|
|
717
|
+
Panel content
|
|
718
|
+
</div>
|
|
694
719
|
</div>
|
|
695
|
-
<div class="panel-
|
|
696
|
-
|
|
720
|
+
<div class="panel panel-danger">
|
|
721
|
+
<div class="panel-heading">
|
|
722
|
+
<h3 class="panel-title">Danger</h3>
|
|
723
|
+
</div>
|
|
724
|
+
<div class="panel-body">
|
|
725
|
+
Panel content
|
|
726
|
+
</div>
|
|
727
|
+
<div class="panel-footer">
|
|
728
|
+
Panel footer
|
|
729
|
+
</div>
|
|
697
730
|
</div>
|
|
698
|
-
</div
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
731
|
+
</div><!-- /.col-sm-4 -->
|
|
732
|
+
</div>
|
|
733
|
+
<hr>
|
|
734
|
+
|
|
735
|
+
<h1>Progress bars</h1>
|
|
736
|
+
<div class="row">
|
|
737
|
+
<div class="col-md-4">
|
|
738
|
+
<div class="progress">
|
|
739
|
+
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;"><span class="sr-only">60% Complete</span></div>
|
|
702
740
|
</div>
|
|
703
|
-
<div class="
|
|
704
|
-
|
|
741
|
+
<div class="progress">
|
|
742
|
+
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%"><span class="sr-only">40% Complete (success)</span></div>
|
|
705
743
|
</div>
|
|
706
|
-
<div class="
|
|
707
|
-
|
|
744
|
+
<div class="progress">
|
|
745
|
+
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%"><span class="sr-only">20% Complete</span></div>
|
|
708
746
|
</div>
|
|
709
747
|
</div>
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
<div class="panel-heading">
|
|
714
|
-
<h3 class="panel-title">Warning</h3>
|
|
748
|
+
<div class="col-md-4">
|
|
749
|
+
<div class="progress">
|
|
750
|
+
<div class="progress-bar progress-bar-warning" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%"><span class="sr-only">60% Complete (warning)</span></div>
|
|
715
751
|
</div>
|
|
716
|
-
<div class="
|
|
717
|
-
|
|
752
|
+
<div class="progress">
|
|
753
|
+
<div class="progress-bar progress-bar-danger" role="progressbar" aria-valuenow="80" aria-valuemin="0" aria-valuemax="100" style="width: 80%"><span class="sr-only">80% Complete (danger)</span></div>
|
|
718
754
|
</div>
|
|
719
755
|
</div>
|
|
720
|
-
<div class="
|
|
721
|
-
<div class="
|
|
722
|
-
<
|
|
723
|
-
</div>
|
|
724
|
-
<div class="panel-body">
|
|
725
|
-
Panel content
|
|
756
|
+
<div class="col-md-4">
|
|
757
|
+
<div class="progress">
|
|
758
|
+
<div class="progress-bar progress-bar-striped" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%"><span class="sr-only">60% Complete</span></div>
|
|
726
759
|
</div>
|
|
727
|
-
<div class="
|
|
728
|
-
|
|
760
|
+
<div class="progress">
|
|
761
|
+
<div class="progress-bar progress-bar-success" style="width: 35%"><span class="sr-only">35% Complete (success)</span></div>
|
|
762
|
+
<div class="progress-bar progress-bar-warning" style="width: 20%"><span class="sr-only">20% Complete (warning)</span></div>
|
|
763
|
+
<div class="progress-bar progress-bar-danger" style="width: 10%"><span class="sr-only">10% Complete (danger)</span></div>
|
|
729
764
|
</div>
|
|
730
765
|
</div>
|
|
731
|
-
</div><!-- /.col-sm-4 -->
|
|
732
|
-
</div>
|
|
733
|
-
<hr>
|
|
734
|
-
|
|
735
|
-
<h1>Progress bars</h1>
|
|
736
|
-
<div class="row">
|
|
737
|
-
<div class="col-md-4">
|
|
738
|
-
<div class="progress">
|
|
739
|
-
<div class="progress-bar" role="progressbar" aria-valuenow="60" aria-valuemin="0" aria-valuemax="100" style="width: 60%;"><span class="sr-only">60% Complete</span></div>
|
|
740
|
-
</div>
|
|
741
|
-
<div class="progress">
|
|
742
|
-
<div class="progress-bar progress-bar-success" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%"><span class="sr-only">40% Complete (success)</span></div>
|
|
743
|
-
</div>
|
|
744
|
-
<div class="progress">
|
|
745
|
-
<div class="progress-bar progress-bar-info" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100" style="width: 20%"><span class="sr-only">20% Complete</span></div>
|
|
746
|
-
</div>
|
|
747
766
|
</div>
|
|
748
|
-
<
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
<div class="
|
|
764
|
-
|
|
767
|
+
<hr>
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
<h1>List groups</h1>
|
|
771
|
+
<div class="row">
|
|
772
|
+
<div class="col-sm-4">
|
|
773
|
+
<ul class="list-group">
|
|
774
|
+
<li class="list-group-item">Cras justo odio</li>
|
|
775
|
+
<li class="list-group-item">Dapibus ac facilisis in</li>
|
|
776
|
+
<li class="list-group-item">Morbi leo risus</li>
|
|
777
|
+
<li class="list-group-item">Porta ac consectetur ac</li>
|
|
778
|
+
<li class="list-group-item">Vestibulum at eros</li>
|
|
779
|
+
</ul>
|
|
780
|
+
</div><!-- /.col-sm-4 -->
|
|
781
|
+
<div class="col-sm-4">
|
|
782
|
+
<div class="list-group">
|
|
783
|
+
<a href="#" class="list-group-item active">
|
|
784
|
+
Cras justo odio
|
|
785
|
+
</a>
|
|
786
|
+
<a href="#" class="list-group-item">Dapibus ac facilisis in</a>
|
|
787
|
+
<a href="#" class="list-group-item">Morbi leo risus</a>
|
|
788
|
+
<a href="#" class="list-group-item">Porta ac consectetur ac</a>
|
|
789
|
+
<a href="#" class="list-group-item">Vestibulum at eros</a>
|
|
790
|
+
</div>
|
|
791
|
+
</div><!-- /.col-sm-4 -->
|
|
792
|
+
<div class="col-sm-4">
|
|
793
|
+
<div class="list-group">
|
|
794
|
+
<a href="#" class="list-group-item active">
|
|
795
|
+
<h4 class="list-group-item-heading">List group item heading</h4>
|
|
796
|
+
<p class="list-group-item-text">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p>
|
|
797
|
+
</a>
|
|
798
|
+
<a href="#" class="list-group-item">
|
|
799
|
+
<h4 class="list-group-item-heading">List group item heading</h4>
|
|
800
|
+
<p class="list-group-item-text">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p>
|
|
801
|
+
</a>
|
|
802
|
+
<a href="#" class="list-group-item">
|
|
803
|
+
<h4 class="list-group-item-heading">List group item heading</h4>
|
|
804
|
+
<p class="list-group-item-text">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p>
|
|
805
|
+
</a>
|
|
806
|
+
</div>
|
|
807
|
+
</div><!-- /.col-sm-4 -->
|
|
765
808
|
</div>
|
|
766
|
-
</
|
|
767
|
-
<hr>
|
|
809
|
+
</hr>
|
|
768
810
|
|
|
811
|
+
<h1>Wells</h1>
|
|
812
|
+
<div class="well">
|
|
813
|
+
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas sed diam eget risus varius blandit sit amet non magna. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Cras mattis consectetur purus sit amet fermentum. Duis mollis, est non commodo luctus, nisi erat porttitor ligula, eget lacinia odio sem nec elit. Aenean lacinia bibendum nulla sed consectetur.</p>
|
|
814
|
+
</div>
|
|
815
|
+
<hr>
|
|
769
816
|
|
|
770
|
-
<
|
|
771
|
-
<div class="
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
<
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
<div class="col-sm-4">
|
|
782
|
-
<div class="list-group">
|
|
783
|
-
<a href="#" class="list-group-item active">
|
|
784
|
-
Cras justo odio
|
|
785
|
-
</a>
|
|
786
|
-
<a href="#" class="list-group-item">Dapibus ac facilisis in</a>
|
|
787
|
-
<a href="#" class="list-group-item">Morbi leo risus</a>
|
|
788
|
-
<a href="#" class="list-group-item">Porta ac consectetur ac</a>
|
|
789
|
-
<a href="#" class="list-group-item">Vestibulum at eros</a>
|
|
817
|
+
<div class="row">
|
|
818
|
+
<div class="col-md-3">
|
|
819
|
+
<h1>Badges</h1>
|
|
820
|
+
<p>
|
|
821
|
+
<a href="#">Inbox <span class="badge">42</span></a>
|
|
822
|
+
</p>
|
|
823
|
+
<ul class="nav nav-pills" role="tablist">
|
|
824
|
+
<li role="presentation" class="active"><a href="#">Home <span class="badge">42</span></a></li>
|
|
825
|
+
<li role="presentation"><a href="#">Profile</a></li>
|
|
826
|
+
<li role="presentation"><a href="#">Messages <span class="badge">3</span></a></li>
|
|
827
|
+
</ul>
|
|
790
828
|
</div>
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
<
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
<h4 class="list-group-item-heading">List group item heading</h4>
|
|
804
|
-
<p class="list-group-item-text">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p>
|
|
805
|
-
</a>
|
|
829
|
+
<div class="col-md-3">
|
|
830
|
+
<h1>Dropdown menus</h1>
|
|
831
|
+
<div class="dropdown open theme-dropdown clearfix">
|
|
832
|
+
<a id="dropdownMenu1" href="#" class="sr-only dropdown-toggle" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a>
|
|
833
|
+
<ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
|
|
834
|
+
<li class="active"><a href="#">Action</a></li>
|
|
835
|
+
<li><a href="#">Another action</a></li>
|
|
836
|
+
<li><a href="#">Something else here</a></li>
|
|
837
|
+
<li role="separator" class="divider"></li>
|
|
838
|
+
<li><a href="#">Separated link</a></li>
|
|
839
|
+
</ul>
|
|
840
|
+
</div>
|
|
806
841
|
</div>
|
|
807
|
-
|
|
808
|
-
</
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
<
|
|
812
|
-
<
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
<
|
|
816
|
-
|
|
817
|
-
<
|
|
818
|
-
<div class="col-md-3">
|
|
819
|
-
<h1>Badges</h1>
|
|
820
|
-
<p>
|
|
821
|
-
<a href="#">Inbox <span class="badge">42</span></a>
|
|
822
|
-
</p>
|
|
823
|
-
<ul class="nav nav-pills" role="tablist">
|
|
824
|
-
<li role="presentation" class="active"><a href="#">Home <span class="badge">42</span></a></li>
|
|
825
|
-
<li role="presentation"><a href="#">Profile</a></li>
|
|
826
|
-
<li role="presentation"><a href="#">Messages <span class="badge">3</span></a></li>
|
|
827
|
-
</ul>
|
|
828
|
-
</div>
|
|
829
|
-
<div class="col-md-3">
|
|
830
|
-
<h1>Dropdown menus</h1>
|
|
831
|
-
<div class="dropdown open theme-dropdown clearfix">
|
|
832
|
-
<a id="dropdownMenu1" href="#" class="sr-only dropdown-toggle" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a>
|
|
833
|
-
<ul class="dropdown-menu" aria-labelledby="dropdownMenu1">
|
|
834
|
-
<li class="active"><a href="#">Action</a></li>
|
|
835
|
-
<li><a href="#">Another action</a></li>
|
|
836
|
-
<li><a href="#">Something else here</a></li>
|
|
837
|
-
<li role="separator" class="divider"></li>
|
|
838
|
-
<li><a href="#">Separated link</a></li>
|
|
842
|
+
<div class="col-md-6">
|
|
843
|
+
<h1>Navs</h1>
|
|
844
|
+
<ul class="nav nav-tabs" role="tablist">
|
|
845
|
+
<li role="presentation" class="active"><a href="#">Home</a></li>
|
|
846
|
+
<li role="presentation"><a href="#">Profile</a></li>
|
|
847
|
+
<li role="presentation"><a href="#">Messages</a></li>
|
|
848
|
+
</ul>
|
|
849
|
+
<ul class="nav nav-pills" role="tablist">
|
|
850
|
+
<li role="presentation" class="active"><a href="#">Home</a></li>
|
|
851
|
+
<li role="presentation"><a href="#">Profile</a></li>
|
|
852
|
+
<li role="presentation"><a href="#">Messages</a></li>
|
|
839
853
|
</ul>
|
|
840
854
|
</div>
|
|
841
855
|
</div>
|
|
842
|
-
<
|
|
843
|
-
<h1>Navs</h1>
|
|
844
|
-
<ul class="nav nav-tabs" role="tablist">
|
|
845
|
-
<li role="presentation" class="active"><a href="#">Home</a></li>
|
|
846
|
-
<li role="presentation"><a href="#">Profile</a></li>
|
|
847
|
-
<li role="presentation"><a href="#">Messages</a></li>
|
|
848
|
-
</ul>
|
|
849
|
-
<ul class="nav nav-pills" role="tablist">
|
|
850
|
-
<li role="presentation" class="active"><a href="#">Home</a></li>
|
|
851
|
-
<li role="presentation"><a href="#">Profile</a></li>
|
|
852
|
-
<li role="presentation"><a href="#">Messages</a></li>
|
|
853
|
-
</ul>
|
|
854
|
-
</div>
|
|
855
|
-
</div>
|
|
856
|
-
<hr>
|
|
856
|
+
<hr>
|
|
857
857
|
|
|
858
|
-
<h1>Navbars</h1>
|
|
859
|
-
<div class="row">
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
858
|
+
<h1>Navbars</h1>
|
|
859
|
+
<div class="row">
|
|
860
|
+
<div class="col-md-6">
|
|
861
|
+
<nav class="navbar navbar-default">
|
|
862
|
+
<div class="container">
|
|
863
|
+
<div class="navbar-header">
|
|
864
|
+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
|
|
865
|
+
<span class="sr-only">Toggle navigation</span>
|
|
866
|
+
<span class="icon-bar"></span>
|
|
867
|
+
<span class="icon-bar"></span>
|
|
868
|
+
<span class="icon-bar"></span>
|
|
869
|
+
</button>
|
|
870
|
+
<a class="navbar-brand" href="#">Project name</a>
|
|
871
|
+
</div>
|
|
872
|
+
<div class="navbar-collapse collapse">
|
|
873
|
+
<ul class="nav navbar-nav">
|
|
874
|
+
<li class="active"><a href="#">Home</a></li>
|
|
875
|
+
<li><a href="#">About</a></li>
|
|
876
|
+
<li><a href="#">Contact</a></li>
|
|
877
|
+
<li class="dropdown">
|
|
878
|
+
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a>
|
|
879
|
+
<ul class="dropdown-menu">
|
|
880
|
+
<li><a href="#">Action</a></li>
|
|
881
|
+
<li><a href="#">Another action</a></li>
|
|
882
|
+
<li><a href="#">Something else here</a></li>
|
|
883
|
+
<li role="separator" class="divider"></li>
|
|
884
|
+
<li class="dropdown-header">Nav header</li>
|
|
885
|
+
<li><a href="#">Separated link</a></li>
|
|
886
|
+
<li><a href="#">One more separated link</a></li>
|
|
887
|
+
</ul>
|
|
888
|
+
</li>
|
|
889
|
+
</ul>
|
|
890
|
+
</div><!--/.nav-collapse -->
|
|
871
891
|
</div>
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
<
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
892
|
+
</nav>
|
|
893
|
+
</div>
|
|
894
|
+
<div class="col-md-6">
|
|
895
|
+
<nav class="navbar navbar-inverse">
|
|
896
|
+
<div class="container">
|
|
897
|
+
<div class="navbar-header">
|
|
898
|
+
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
|
|
899
|
+
<span class="sr-only">Toggle navigation</span>
|
|
900
|
+
<span class="icon-bar"></span>
|
|
901
|
+
<span class="icon-bar"></span>
|
|
902
|
+
<span class="icon-bar"></span>
|
|
903
|
+
</button>
|
|
904
|
+
<a class="navbar-brand" href="#">Project name</a>
|
|
905
|
+
</div>
|
|
906
|
+
<div class="navbar-collapse collapse">
|
|
907
|
+
<ul class="nav navbar-nav">
|
|
908
|
+
<li class="active"><a href="#">Home</a></li>
|
|
909
|
+
<li><a href="#">About</a></li>
|
|
910
|
+
<li><a href="#">Contact</a></li>
|
|
911
|
+
<li class="dropdown">
|
|
912
|
+
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a>
|
|
913
|
+
<ul class="dropdown-menu">
|
|
914
|
+
<li><a href="#">Action</a></li>
|
|
915
|
+
<li><a href="#">Another action</a></li>
|
|
916
|
+
<li><a href="#">Something else here</a></li>
|
|
917
|
+
<li role="separator" class="divider"></li>
|
|
918
|
+
<li class="dropdown-header">Nav header</li>
|
|
919
|
+
<li><a href="#">Separated link</a></li>
|
|
920
|
+
<li><a href="#">One more separated link</a></li>
|
|
921
|
+
</ul>
|
|
922
|
+
</li>
|
|
923
|
+
</ul>
|
|
924
|
+
</div><!--/.nav-collapse -->
|
|
905
925
|
</div>
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
<li class="active"><a href="#">Home</a></li>
|
|
909
|
-
<li><a href="#">About</a></li>
|
|
910
|
-
<li><a href="#">Contact</a></li>
|
|
911
|
-
<li class="dropdown">
|
|
912
|
-
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Dropdown <span class="caret"></span></a>
|
|
913
|
-
<ul class="dropdown-menu">
|
|
914
|
-
<li><a href="#">Action</a></li>
|
|
915
|
-
<li><a href="#">Another action</a></li>
|
|
916
|
-
<li><a href="#">Something else here</a></li>
|
|
917
|
-
<li role="separator" class="divider"></li>
|
|
918
|
-
<li class="dropdown-header">Nav header</li>
|
|
919
|
-
<li><a href="#">Separated link</a></li>
|
|
920
|
-
<li><a href="#">One more separated link</a></li>
|
|
921
|
-
</ul>
|
|
922
|
-
</li>
|
|
923
|
-
</ul>
|
|
924
|
-
</div><!--/.nav-collapse -->
|
|
925
|
-
</div>
|
|
926
|
-
</nav>
|
|
926
|
+
</nav>
|
|
927
|
+
</div>
|
|
927
928
|
</div>
|
|
928
|
-
</div>
|
|
929
929
|
{% endblock %}
|