Added the option to select lists in report.
Added an option to generate a CSV report.
This commit is contained in:
parent
6ba04d7ff4
commit
2056645023
8 changed files with 177 additions and 50 deletions
|
@ -13,6 +13,7 @@
|
|||
<li><a href="/report-templates/create">{{#translate}}Blank{{/translate}}</a></li>
|
||||
<li><a href="/report-templates/create?type=subscribers-all">{{#translate}}All Subscribers{{/translate}}</a></li>
|
||||
<li><a href="/report-templates/create?type=subscribers-grouped">{{#translate}}Grouped Subscribers{{/translate}}</a></li>
|
||||
<li><a href="/report-templates/create?type=export-list-csv">{{#translate}}Export List as CSV{{/translate}}</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -44,6 +44,30 @@
|
|||
</div>
|
||||
</div>
|
||||
{{/case}}
|
||||
{{#case "list"}}
|
||||
<div class="form-group">
|
||||
<label for="description" class="col-sm-2 control-label">{{name}}</label>
|
||||
<div class="col-sm-10">
|
||||
<div class="table-responsive">
|
||||
<table data-topic-url="/lists/quicklist" data-sort-column="2" data-sort-order="asc" class="table table-bordered table-hover data-table-ajax data-table-{{#if isMulti}}multi{{/if}}selectable display nowrap" width="100%" data-row-sort="0,1,1">
|
||||
<thead>
|
||||
<th class="col-md-1">
|
||||
#
|
||||
</th>
|
||||
<th>
|
||||
{{#translate}}Name{{/translate}}
|
||||
</th>
|
||||
<th>
|
||||
{{#translate}}Subscribers{{/translate}}
|
||||
</th>
|
||||
</thead>
|
||||
</table>
|
||||
<input type="hidden" name="{{id}}Selection" value="{{value}}" />
|
||||
</div>
|
||||
<span class="help-block">{{#translate}}Select a campaign in the table above by clicking on the respective row number.{{/translate}}</span>
|
||||
</div>
|
||||
</div>
|
||||
{{/case}}
|
||||
{{/switch}}
|
||||
{{/each}}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue