Browse Source

Only show Custom Fields on IP Address Assign Page if custom fields are set against the ip address (#1031)

Stephen 8 years ago
parent
commit
f11bb254a5
1 changed files with 2 additions and 0 deletions
  1. 2 0
      netbox/templates/dcim/ipaddress_assign.html

+ 2 - 0
netbox/templates/dcim/ipaddress_assign.html

@@ -43,12 +43,14 @@
                     {% render_field form.set_as_primary %}
                 </div>
             </div>
+            {% if form.custom_fields %}
             <div class="panel panel-default">
                 <div class="panel-heading"><strong>Custom Fields</strong></div>
                 <div class="panel-body">
                     {% render_custom_fields form %}
                 </div>
             </div>
+            {% endif %}
 		    <div class="form-group">
                 <div class="col-md-9 col-md-offset-3">
                     <button type="submit" name="_create" class="btn btn-primary">Create</button>