nautobot 1.6.27__py3-none-any.whl → 1.6.28__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.
- nautobot/extras/tables.py +3 -0
- nautobot/project-static/docs/code-reference/nautobot/apps/tables.html +364 -354
- nautobot/project-static/docs/configuration/authentication/sso.html +2 -2
- nautobot/project-static/docs/release-notes/version-1.6.html +160 -93
- nautobot/project-static/docs/search/search_index.json +1 -1
- nautobot/project-static/docs/sitemap.xml +187 -187
- nautobot/project-static/docs/sitemap.xml.gz +0 -0
- nautobot/utilities/tables.py +24 -18
- {nautobot-1.6.27.dist-info → nautobot-1.6.28.dist-info}/METADATA +1 -1
- {nautobot-1.6.27.dist-info → nautobot-1.6.28.dist-info}/RECORD +14 -14
- {nautobot-1.6.27.dist-info → nautobot-1.6.28.dist-info}/LICENSE.txt +0 -0
- {nautobot-1.6.27.dist-info → nautobot-1.6.28.dist-info}/NOTICE +0 -0
- {nautobot-1.6.27.dist-info → nautobot-1.6.28.dist-info}/WHEEL +0 -0
- {nautobot-1.6.27.dist-info → nautobot-1.6.28.dist-info}/entry_points.txt +0 -0
nautobot/extras/tables.py
CHANGED
|
@@ -786,6 +786,9 @@ class JobButtonTable(BaseTable):
|
|
|
786
786
|
|
|
787
787
|
class NoteTable(BaseTable):
|
|
788
788
|
actions = ButtonsColumn(Note, pk_field="slug")
|
|
789
|
+
note = tables.Column(
|
|
790
|
+
attrs={"td": {"class": "rendered-markdown"}},
|
|
791
|
+
)
|
|
789
792
|
|
|
790
793
|
class Meta(BaseTable.Meta):
|
|
791
794
|
model = Note
|