Compare commits

..

No commits in common. "071454f10fbf35f7b6e585ca19c108441573dc78" and "64c3225f9d35b837da5b84339a79b56f53bc1464" have entirely different histories.

3 changed files with 1 additions and 19 deletions

18
.vscode/launch.json vendored
View File

@ -1,18 +0,0 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python: Django",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}\\manage.py",
"args": [
"runserver"
],
"django": true
}
]
}

View File

@ -3,7 +3,7 @@ from .models import ssispackages
from django.urls import reverse
class ssispackagesTable(tables.Table):
SSISProject = tables.Column(linkify=True, order_by=("SSISProject", "PackageName"))
SSISProject = tables.Column(linkify=True)
class Meta:
model = ssispackages
template_name="django_tables2/bootstrap.html"