-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add list view for relevant Service Catalogs and Bundles
- Loading branch information
Hilda Stastna
committed
Jul 3, 2019
1 parent
cf09f53
commit 96fd535
Showing
4 changed files
with
121 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#main_div | ||
= render :partial => 'layouts/gtl' |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
# | ||
# This is an MIQ Report configuration file | ||
# Single value parameters are specified as: | ||
# single_value_parm: value | ||
# Multiple value parameters are specified as: | ||
# multi_value_parm: | ||
# - value 1 | ||
# - value 2 | ||
# | ||
|
||
# Report title | ||
title: Catalog Items | ||
|
||
# Menu name | ||
name: Catalog Items | ||
|
||
# Main DB table report is based on | ||
db: ServiceTemplate | ||
|
||
# Columns to fetch from the main table | ||
cols: | ||
- name | ||
- description | ||
- type_display | ||
- prov_type | ||
- display | ||
#- provision_cost | ||
- created_at | ||
|
||
# Included tables (joined, has_one, has_many) and columns | ||
include: | ||
picture: | ||
columns: | ||
- id | ||
service_template_catalog: | ||
columns: | ||
- name | ||
tenant: | ||
columns: | ||
- name | ||
|
||
# Included tables and columns for query performance | ||
include_for_find: | ||
:picture: {} | ||
|
||
# Order of columns (from all tables) | ||
col_order: | ||
- name | ||
- description | ||
- tenant.name | ||
- type_display | ||
- prov_type | ||
- display | ||
- service_template_catalog.name | ||
#- provision_cost | ||
- created_at | ||
|
||
# Column titles, in order | ||
headers: | ||
- Name | ||
- Description | ||
- Tenant | ||
- Type | ||
- Item Type | ||
- Display in Catalog | ||
- Catalog | ||
#- Cost | ||
- Created On | ||
|
||
col_formats: | ||
- | ||
- | ||
- | ||
- :boolean_yes_no | ||
|
||
# Condition(s) string for the SQL query | ||
conditions: | ||
|
||
# Order string for the SQL query | ||
order: Ascending | ||
|
||
# Columns to sort the report on, in order | ||
sortby: | ||
- name | ||
|
||
# Group rows (y=yes,n=no,c=count) | ||
group: n | ||
|
||
# Graph type | ||
# Bar | ||
# Column | ||
# ColumnThreed | ||
# ParallelThreedColumn | ||
# Pie | ||
# PieThreed | ||
# StackedBar | ||
# StackedColumn | ||
# StackedThreedColumn | ||
|
||
graph: | ||
|
||
# Dimensions of graph (1 or 2) | ||
# Note: specifying 2 for a single dimension graph may not return expected results | ||
dims: |