Skip to content

Commit

Permalink
namespace bug
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <[email protected]>
  • Loading branch information
vsoch committed Jul 23, 2021
1 parent 41f8a6d commit eec7a2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion spackmon/apps/api/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
schema_view = get_swagger_view(title="Spack Monitor API")

server_views = [
url(r"^api/docs$", schema_view),
url(r"^api/docs/", schema_view),
path(
"tables/build/",
api_views.BuildsTable.as_view(),
Expand Down
2 changes: 1 addition & 1 deletion spackmon/apps/main/templates/main/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ <h3 class="buildgroupname">
{% block scripts %}
<script>
$(document).ready(function(){
$("#builds_table").dataTable({"order": [[ 3, "desc" ]], "pageLength": 10, "processing": true, "serverSide": true, "ajax": "{% url 'api:builds_table' %}{% if tag %}?tag={{ tag }}{% endif %}", "lengthMenu": [[10,15,20,25], [10,15,20,25]],
$("#builds_table").dataTable({"order": [[ 3, "desc" ]], "pageLength": 10, "processing": true, "serverSide": true, "ajax": "{% url 'api:internal_apis:builds_table' %}{% if tag %}?tag={{ tag }}{% endif %}", "lengthMenu": [[10,15,20,25], [10,15,20,25]],
columnDefs: [ {
targets: 3,
createdCell: function (td, cellData, rowData, row, col) {
Expand Down

0 comments on commit eec7a2f

Please sign in to comment.