-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug fix for v1.3.0 and using Netbox instead of local database
- Loading branch information
Showing
6 changed files
with
18 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
$(document).ready(function() { | ||
var events = $('#events'); | ||
var table = $('#tblDCIMNetbox').DataTable({ | ||
"pageLength": 10, | ||
"lengthMenu": [ | ||
[10, 25, 50, 100, -1], | ||
[10, 25, 50, 100, "All"] | ||
] | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
{% extends 'base.html' %} | ||
{% block content %} | ||
<h1>500 ERROR PAGE</h1> | ||
{% if session['DEBUG'] %} | ||
<p>{{ error }}</p> | ||
{% endif %} | ||
<br /> | ||
<p>Try logging out and logging back in. If that still doesn't resolve the issue, contact your NetConfig administrator</p> | ||
<br /> | ||
<p>If accessing a device using local credentials, verify you entered the login password and the privileged/enable password correctly. | ||
<br /> | ||
If the device requires a privileged/enable level password, one MUST be entered in order to access the device.</p> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters