-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Task/wp 372 admin except extend entity name (#241)
* task/wp-372-Admin-Except-Extend-Entity-Name - Updated query for get_all_exceptions and get_all_extensions - Updated view and template for extensions to pull entity name from submitters table * Left org name as the parameter for filter but changed value to entity_name from submitters table * Updated to entity organization so users will know to use filter by organization * Allow None to be an outcome listed in the edit modals but only if it's a NoneType object and not a string --------- Co-authored-by: edmondsgarrett <[email protected]>
- Loading branch information
1 parent
2cc4018
commit 1bfb7a8
Showing
11 changed files
with
36 additions
and
41 deletions.
There are no files selected for viewing
7 changes: 2 additions & 5 deletions
7
apcd-cms/src/apps/admin_exception/static/admin_exception/css/table.css
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,16 +1,13 @@ | ||
.modal-cell { | ||
padding-left: 0px; | ||
} | ||
/* SEE: https://css-tricks.com/responsive-data-tables/ */ | ||
@media (max-width: 767px) { | ||
|
||
/* To label the cells */ | ||
/* RFE: Add `data-label` to each cell so we can use `attr(data-label)` */ | ||
.exception-table td:nth-of-type(1):before { content: "Created"; } | ||
.exception-table td:nth-of-type(2):before { content: "Organization"; } | ||
.exception-table td:nth-of-type(2):before { content: "Entity Organization"; } | ||
.exception-table td:nth-of-type(3):before { content: "Requestor Name"; } | ||
.exception-table td:nth-of-type(4):before { content: "Exception Type"; } | ||
.exception-table td:nth-of-type(5):before { content: "Outcome"; } | ||
.exception-table td:nth-of-type(6):before { content: "Status"; } | ||
.exception-table td:nth-of-type(7):before { content: "Actions"; } | ||
.exception-table td:nth-of-type(7):before {content:"Actions";} | ||
} |
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
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
7 changes: 2 additions & 5 deletions
7
apcd-cms/src/apps/admin_extension/static/admin_extension/css/table.css
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,16 +1,13 @@ | ||
.modal-cell { | ||
padding-left: 0px; | ||
} | ||
/* SEE: https://css-tricks.com/responsive-data-tables/ */ | ||
@media (max-width: 767px) { | ||
/* To label the cells */ | ||
/* RFE: Add `data-label` to each cell so we can use `attr(data-label)` */ | ||
.extension-table td:nth-of-type(1):before { content: "Created"; } | ||
.extension-table td:nth-of-type(2):before { content: "Organization"; } | ||
.extension-table td:nth-of-type(2):before { content: "Entity Organization"; } | ||
.extension-table td:nth-of-type(3):before { content: "Requestor Name"; } | ||
.extension-table td:nth-of-type(4):before { content: "Extension Type"; } | ||
.extension-table td:nth-of-type(5):before { content: "Outcome"; } | ||
.extension-table td:nth-of-type(6):before { content: "Status"; } | ||
.extension-table td:nth-of-type(7):before { content: "Approved Expiration"; } | ||
.extension-table td:nth-of-type(8):before { content: "Actions"; } | ||
} | ||
} |
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
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