Skip to content
Snippets Groups Projects
Commit e235dd12 authored by Carsten  Rose's avatar Carsten Rose
Browse files

AdministratorManual/Index.rst: Report to list forms extended with a delete button per form row.

parent b1d08646
No related branches found
No related tags found
No related merge requests found
...@@ -87,11 +87,11 @@ Setup a *report* to manage all *forms*: Create a Typo3 page and insert a content ...@@ -87,11 +87,11 @@ Setup a *report* to manage all *forms*: Create a Typo3 page and insert a content
:: ::
# If there is a form given by SIP: show # If there is a form given by SIP: show
form = {{form:S}} form={{form:S}}
10 { 10 {
# List of Forms: Do not show this list of forms if there is a form given by SIP. # List of Forms: Do not show this list of forms if there is a form given by SIP.
# Table header. # Table header.
sql = SELECT CONCAT('{{pageId:T}}&form=Form&') as Pagen, '#', 'Name', 'Title', 'Table' FROM (SELECT 1) AS fake WHERE '{{form:SE}}'='' sql = SELECT CONCAT('{{pageId:T}}&form=Form&') as Pagen, '#', 'Name', 'Title', 'Table' FROM (SELECT 1) AS fake WHERE '{{form:SE}}'=''
head = <table class="table table-hover"> head = <table class="table table-hover">
...@@ -102,9 +102,8 @@ Setup a *report* to manage all *forms*: Create a Typo3 page and insert a content ...@@ -102,9 +102,8 @@ Setup a *report* to manage all *forms*: Create a Typo3 page and insert a content
fend = </th> fend = </th>
10 { 10 {
# All forms. # All forms
# Table rows. sql = SELECT CONCAT('{{pageId:T}}&form=Form&r=', f.id) as Pagee, f.id, f.name, f.title, f.tableName, CONCAT('form=Form&r=', f.id) as Paged FROM Form AS f ORDER BY f.name
sql = SELECT CONCAT('{{pageId:T}}&form=Form&r=', f.id) as Pagee, f.id, f.name, f.title, f.tableName FROM Form AS f ORDER BY f.name
rbeg = <tr> rbeg = <tr>
rend = </tr> rend = </tr>
fbeg = <td> fbeg = <td>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment