~include('../site/admin.header.tmpl','Gestion des tags') ~includeonce('filter.tmpl')
Les tags utilisateurs sont exclus de cette interface
~img('img/svg/admin-purge.svg','Purge','intxt') Purge des tags
Rechercher un tag :
~if(~getpost('text'),
~list(~get('database'),
"SELECT tags.id, tags.tag FROM tags
LEFT JOIN tags_ressources ON tags_ressources.tag_id = tags.id
LEFT JOIN tags_sections ON tags_ressources.section_id = tags_sections.id
WHERE tags.tag LIKE '%~call('simple_fi','text')%'
AND tags_sections.section != 'user_keyword'
GROUP BY tags.id
ORDER BY tags.tag",
'LM',
'~fld('tag')
',
'LD','Pas de tag contenant ~getpost('text')'
)
)