Compare commits

..

No commits in common. "master" and "3f250630032780de993f331252a6bfb2f954c8e9" have entirely different histories.

4 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 from django.urls import reverse
class ssispackagesTable(tables.Table): class ssispackagesTable(tables.Table):
SSISProject = tables.Column(linkify=True, order_by=("SSISProject", "PackageName")) SSISProject = tables.Column(linkify=True)
class Meta: class Meta:
model = ssispackages model = ssispackages
template_name="django_tables2/bootstrap.html" template_name="django_tables2/bootstrap.html"