Compare commits
3 Commits
3f25063003
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
071454f10f | ||
|
|
4aa78840ff | ||
|
|
64c3225f9d |
18
.vscode/launch.json
vendored
Normal file
18
.vscode/launch.json
vendored
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
{
|
||||||
|
// 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
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
Binary file not shown.
@ -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)
|
SSISProject = tables.Column(linkify=True, order_by=("SSISProject", "PackageName"))
|
||||||
class Meta:
|
class Meta:
|
||||||
model = ssispackages
|
model = ssispackages
|
||||||
template_name="django_tables2/bootstrap.html"
|
template_name="django_tables2/bootstrap.html"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user