mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-18 13:06:30 -06:00
#6372: Device type import: JSON data field not big enough
This commit is contained in:
parent
7bb7747c67
commit
27a02f64b2
BIN
netbox/project-static/dist/netbox-dark.css
vendored
BIN
netbox/project-static/dist/netbox-dark.css
vendored
Binary file not shown.
File diff suppressed because one or more lines are too long
BIN
netbox/project-static/dist/netbox-light.css
vendored
BIN
netbox/project-static/dist/netbox-light.css
vendored
Binary file not shown.
File diff suppressed because one or more lines are too long
@ -545,13 +545,15 @@ pre {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea#id_local_context_data,
|
textarea.form-control[rows='10'] {
|
||||||
textarea.markdown,
|
height: 18rem;
|
||||||
textarea#id_public_key {
|
|
||||||
font-family: $font-family-monospace;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea.form-control[name='csv'] {
|
textarea#id_local_context_data,
|
||||||
|
textarea.markdown,
|
||||||
|
textarea#id_public_key,
|
||||||
|
textarea.form-control[name='csv'],
|
||||||
|
textarea.form-control[name='data'] {
|
||||||
font-family: $font-family-monospace;
|
font-family: $font-family-monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -6,18 +6,16 @@
|
|||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="row mb-3">
|
<div class="row mb-3">
|
||||||
<div class="col col-md-8">
|
<div class="col col-md-12 col-xl-8 offset-xl-2">
|
||||||
<form action="" method="post" class="form form-horizontal">
|
<form action="" method="post" class="form form-horizontal">
|
||||||
{% csrf_token %}
|
{% csrf_token %}
|
||||||
{% render_form form %}
|
{% render_form form %}
|
||||||
<div class="form-group">
|
<div class="col col-md-12 text-end">
|
||||||
<div class="col col-md-12 text-end">
|
{% if return_url %}
|
||||||
{% if return_url %}
|
<a href="{{ return_url }}" class="btn btn-outline-danger">Cancel</a>
|
||||||
<a href="{{ return_url }}" class="btn btn-outline-danger">Cancel</a>
|
{% endif %}
|
||||||
{% endif %}
|
<button type="submit" name="_addanother" class="btn btn-outline-primary">Submit & Import Another</button>
|
||||||
<button type="submit" name="_addanother" class="btn btn-outline-primary">Submit & Import Another</button>
|
<button type="submit" name="_create" class="btn btn-primary">Submit</button>
|
||||||
<button type="submit" name="_create" class="btn btn-primary">Submit</button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user