1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Closes #10729: Add date & time custom field type (#11857)

* Add datetime custom field type

* Update custom field tests
This commit is contained in:
Jeremy Stretch
2023-02-28 13:33:40 -05:00
committed by GitHub
parent 7994073687
commit 5517963b24
7 changed files with 108 additions and 31 deletions

View File

@@ -9,6 +9,8 @@
{% checkmark value false="False" %}
{% elif customfield.type == 'date' and value %}
{{ value|annotated_date }}
{% elif customfield.type == 'datetime' and value %}
{{ value|annotated_date }}
{% elif customfield.type == 'url' and value %}
<a href="{{ value }}">{{ value|truncatechars:70 }}</a>
{% elif customfield.type == 'json' and value %}