Contact
Contact
My account
03.09.24

How to save the support team time with templates in GLPI

Twig is a templating Engine for PHP that helps to keep the code clean and organized by separating what is coded from what people see on the website. This makes the task of managing and updating templates a bit easier.

GLPI has brought since the version 10, the ability to use Twig variables on followups, tasks and solution templates. But you may ask, what is it useful for?

Well. Let's take a template you use on a daily basis and have to always change some fields. Start with a welcome message in a ticket, as an example:

Dear {Client’s Name},

Thank you for reaching out to our support team. We wanted to let you know that your support ticket has been successfully inserted into our support area. Our team is already on it and will start the process of analysis within {specified time frame}.

If you need to add any additional information or have further questions, you can simply reply to this email or visit our website at upport.yourdomain.com to update your ticket.

We appreciate your patience and will get back to you as soon as possible.

Best regards,

I know. Sometimes we forget to manually change the fields by the correct ones, or we just let general information there as don't make any mistakes.

The twig variables are exactly for this.

Every ticket has some pre-filled fields. Be it by the user, by the technicians, by automatic business rules. The only thing we want here is to be accurate, quick and informative.

Let's change this same message to add

  1. The first name of the requester
  2. The Time to Own the ticket received at this moment
  3. The group that is responsible for the ticket at the moment

Dear {% for user in ticket.requesters.users %} {{ user.firstname }} ,
{% endfor %}

Thank you for reaching out to our support team. We wanted to let you know that your support ticket has been successfully inserted into our support area. Our team is already on it and will start the process of analysis within {{ ticket.tto | date("d/m/y H:i") }}.

The group {{ group.name }} is responsible for this ticket at this level.

If you need to add any additional information or have further questions, you can simply reply to this email or visit our website at upport.yourdomain.com to update your ticket.

We appreciate your patience and will get back to you as soon as possible.

Best regards,

As you can see, there are some variables in this template. It means that every time a technician selects this Followup template, GLPI will insert:

  • Every first name of users at the requesters field
    • {% for user in ticket.requesters.users %} {{ user.firstname }} , {% endfor %}
  • The Time to Own date and time added manually or automatically via business rules
    • {{ ticket.tto | date("d/m/y H:i") }}
  • The responsible group of the ticket
    • {{ group.name }}

The best part is that, once these fields change during the lifecycle of the ticket, the new followups, tasks and solutions will get updated information to be inserted during the time.

Here are some other ideas of templates you may use

  • Fill with a KB article
    • If you have a knowledge base article that may be useful for the user, you may:
      • relate this article with the ticket using the knowledge base tab in a ticket
      • create the followup or solution template with the following variable {{ knowbaseitem.answer | raw }}
      • select the template you've previously created. GLPI will insert the content of the article to the solution or followup template.
      • here is a template example


{% for user in ticket.requesters.users %} {{ user.fullname }}
{% endfor %}
There is a possible article on our knowledge base that may be of help:
{% for knowbaseitem in ticket.knowbaseitems %}

{{ knowbaseitem.link | raw }}

{{ knowbaseitem.answer | raw }}

{% endfor %}

  • Use it for pending reasons
    • relate this article with the ticket using the knowledge base tab in a ticket
    • create the followup template with the important variables
    • create the pending reasons
    • connect the template you created to the pending reason you've previously created
    • here is a template example

Hi {% for user in ticket.requesters.users %} {{ user.firstname }} ,
{% endfor %}

Hope you're doing well! We're just dropping a quick note to remind you that your response is needed to proceed with ticket # {{ ticket.id }} regarding {{ ticket.name }}.

Your input is crucial for us to move forward. If you could spare a few moments to provide the necessary information or feedback, we'd greatly appreciate it.

If the issue has already been resolved, or you have other questions, please let us know.

Thanks for your attention to this matter!

Best,

{% for user in ticket.assignees.users %} {{ user.firstname }}

{% endfor %}

The Twig variables may be found at the followup, task and solution templates. Explore it and make me know what are the projects you have created with them. We will have news about those same twigs in next versions.

YouTube video:

Stay connected so you don’t miss any of our news!

Vous aimerez peut-être aussi ces articles

24.11.25
Félicitations ! Nous sommes heureux d'annoncer l'arrivée de CTL, notre nouveau partenaire Silver du réseau GLPI en Argentine. CTL est spécialisé dans les solutions complètes de supervision, de sécurité informatique et de gestion d'infrastructure. En tant que partenaire officiel GLPI, CTL propose un support technique spécialisé, des formations et des services de conseil. Son objectif est clair : aider les entreprises à optimiser leurs opérations technologiques et à renforcer leur sécurité.
17.11.25
Félicitations ! Nous sommes heureux d'annoncer notre nouveau partenaire Silver GLPI Network en Angola : TIS Tech. TIS Tech est une société de conseil en technologies fondée en 2013 en Angola, dont le siège social est situé à Luanda. L'entreprise s'engage à mener la transformation numérique, portée par l'innovation et la promotion de la durabilité des entreprises dans le pays. Son objectif est d'offrir des solutions complètes, allant […]
13.11.25
Félicitations ! Nous sommes heureux d'annoncer notre nouveau partenaire Silver GLPI Network au Brésil : InterOp. Depuis plus de 30 ans, InterOp fournit des services informatiques : supervision et observabilité, sécurité de l'information, support technique et administration d'environnements. L'entreprise accompagne les organisations de toutes tailles et de tous secteurs de manière personnalisée, sécurisée et efficace. Son objectif est d'améliorer continuellement ses services.
10.11.25
Félicitations ! Nous sommes heureux d’annoncer notre nouveau partenaire Silver du réseau GLPI en Italie : IWS Consulting. IWS Consulting est une entreprise spécialisée dans les solutions informatiques et les projets de transformation numérique. Grâce à une approche axée sur le conseil et l’innovation, elle accompagne les organisations dans la gestion et l’évolution de leur infrastructure et de leurs applications. Ses deux domaines d’expertise travaillent en synergie pour optimiser […]
04.11.25
Une nouvelle version de GLPI est disponible : GLPI 11.0.2. Vous pouvez télécharger l’archive GLPI 11.0.2 sur GitHub. Voici également une liste des corrections de bogues importantes incluses dans cette version : De nombreuses nouveautés sont également apportées à la nouvelle HLAPI, désormais en version 2.1, afin d’ajouter des champs (notamment dans les tickets) qui manquaient auparavant. Nous fournissons également […]
27.10.25
Une journée pour célébrer la collaboration et l'innovation. La GLPI Partners Day 2025, organisée dans le magnifique hôtel Alfonso XIII de Séville 🇪🇸, a réuni nos partenaires officiels du monde entier pour une journée dédiée à l'innovation, à la collaboration et à l'avenir de GLPI. Cette 3e édition a été une véritable célébration de l'écosystème GLPI […]
13.10.25
Félicitations ! Nous sommes heureux d'annoncer l'arrivée d'Echo-9, notre nouveau partenaire Silver du réseau GLPI au Royaume-Uni. Echo-9 est un fournisseur leader de services partagés, spécialisé dans la fourniture de solutions innovantes aux organismes publics. Notre objectif est d'améliorer l'efficacité opérationnelle et de stimuler une croissance durable grâce à la mise en œuvre de technologies de pointe. 🌐 Site web : https://www.echo-9.org/ Nous sommes ravis […]
10.10.25
Félicitations ! Nous sommes heureux d'annoncer l'arrivée de notre nouveau partenaire Silver GLPI Network à Singapour : Unison Consulting Pte Ltd. Unison Consulting allie une expertise approfondie des services financiers, du reporting réglementaire et de l'intégration d'entreprise à des capacités de prestation technique éprouvées. Nos consultants ont mené des programmes de transformation complexes et stratégiques, s'appuyant sur un modèle de services gérés éprouvé qui garantit une optimisation continue, […]
09.10.25
Une nouvelle version de GLPI est disponible : GLPI 11.0.1. Suite à la sortie de GLPI 11, voici la première version corrigée, corrigeant la plupart des problèmes signalés. Nous continuerons de corriger les problèmes restants dans les semaines à venir. En attendant, si vous rencontrez un problème, n'hésitez pas à vérifier s'il existe déjà […]
30.09.25
Nous sommes fiers d'annoncer la sortie officielle de GLPI 11, la dernière version majeure de notre logiciel open source. Après des mois de développement et de tests communautaires, GLPI 11 est désormais stable et prêt pour la production. Quoi de neuf ? La liste complète des modifications est disponible dans le journal des modifications détaillé, mais voici quelques-unes des plus […]
26.09.25
Êtes-vous prêt à déployer GLPI dans des conteneurs ? 🚀 Grâce aux images Docker officielles, déployer GLPI n'a jamais été aussi simple, que vous souhaitiez le tester rapidement ou l'exécuter en production. Pourquoi Docker pour GLPI ? Exécuter GLPI dans Docker offre des avantages clés : À qui s'adresse cette approche ? Cette approche est conçue pour : Démarrer avec GLPI […]
26.09.25
Introduction Aujourd'hui, les technologies de l'information (TI) représentent 3 à 4 % des émissions mondiales de gaz à effet de serre (GES). Ce chiffre montre que le secteur des TI est déjà l'un des principaux contributeurs au changement climatique, et sa croissance continue y ajoute un poids considérable. Pour atteindre la neutralité carbone d'ici 2050, il est essentiel de mesurer, de comprendre, puis de réduire l'impact environnemental de votre […]
26.09.25
Une nouvelle version de GLPI est disponible. Des corrections de bugs ont été apportées depuis GLPI 10.0.19. Consultez le journal des modifications complet pour plus de détails. Vous pouvez télécharger l'archive GLPI 10.0.20 sur GitHub. Nous remercions tous ceux qui ont contribué à cette nouvelle version et tous ceux qui contribuent régulièrement au projet GLPI ! Cordialement. Suivez-nous sur […]
26.09.25
Félicitations ! Nous sommes heureux d'annoncer notre nouveau partenaire Silver GLPI Network en Suisse : Suisse Expert Consulting SARL. Suisse Expert Consulting SARL accompagne les entreprises, les courtiers et les organismes publics dans la gestion et l'évolution de leurs systèmes d'information. Leur mission est de fournir aux organisations des solutions technologiques fiables, innovantes et sur mesure alliant performance, sécurité et simplicité […]
26.09.25
Félicitations ! Nous sommes heureux d'annoncer notre nouveau partenaire Silver GLPI Network en Côte d'Ivoire : Innovtechnology. Fondée en 2015 en Côte d'Ivoire, INNOV TECHNOLOGY regroupe des ingénieurs expérimentés possédant une vaste expertise acquise dans le cadre de projets locaux et internationaux. Spécialisée dans les domaines de l'informatique, des télécommunications et de l'énergie, l'entreprise fournit des services tels que les infrastructures réseaux, la fibre optique, la maintenance et l'optimisation des télécommunications, […]
26.09.25
As you know, GLPI 11 has now reached the Release Candidate stage.  This means no more new features will be added; the focus is now on bug fixing, and completing translations. The version is feature-ready, and we’re very close to the stable release. GLPI 11 stable will be released on 1st October 🎉 You can already explore […]
25.07.25
Congratulations! We are happy to announce our new Silver GLPI Network partner in France: Antares IT ANTARES is above all a digital consulting and services company, where innovation lies at the heart of everything we do. We help our clients transform, optimize their processes, and secure their infrastructure by combining technical expertise with a deep understanding […]
24.07.25
At Teclib’, we firmly believe that the strength of our open-source ecosystem lies in the power of partnerships. Last week, our Channel Manager for Brazil, Nicolas Maymil, visited our partner Pellissari Soluções in Ponta Grossa (PR), further deepening the collaboration that has been key to expanding GLPI’s presence in southern Brazil. Invited by João, founder and director of […]
24.07.25
Congratulations! We are happy to announce our new Silver GLPI Network partner in Canada: Techblue TechBlue LLP is a Canadian company established in April 2025, specializing in the sale and integration of scalable software solutions for businesses of all sizes. Based in British Columbia, TechBlue offers modular software designed to adapt to the growth and specific […]
24.07.25
Congratulations! We are happy to announce our new Silver GLPI Network partner in United States: IT by Brad What a GLPI Partner Can Do for YouTransform Your IT Management with GLPI and IT by Brad IT by Brad is a certified GLPI Partner, committed to delivering top-tier IT Asset Management and Service Management solutions. Through their partnership with […]
1 2 3 16
chevron-right
linkedin facebook pinterest youtube rss twitter instagram facebook-blank rss-blank linkedin-blank pinterest youtube twitter instagram