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

Initial work on custom fields

This commit is contained in:
Jeremy Stretch
2016-08-12 17:20:01 -04:00
parent bf1b8ab9b8
commit 550a05487d
8 changed files with 248 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
{% load form_helpers %}
{% for field in form %}
{% if field.name in form.custom_fields %}
{% render_field field %}
{% endif %}
{% endfor %}