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!

New Silver partner in the USA: CTL Information Technology

Congratulations! We are happy to announce our new Silver GLPI Network partner in the USA: CTL Information Technology.

CTL Information Technology is an ally in the digital transformation of its clients, offering them support, security, and management solutions. The pillars of the company are its infrastructure, human resources, and well-developed processes.

Website: https://bit.ly/47jIOwV

We are excited that GLPI ITSM solution is becoming more and more represented all over the world and GLPI Network (our support offer for on-premises – get your IT Infrastructure secured) subscription service will be available for more customers through our new partners.

Our large partnership network is always open for new collaborations. If you are interested in representing one of our products in your country, get in touch with us: https://glpi-project.org/contact_us/

Being a partner means:

  • Having an a direct access to the Teclib´s tech expertise;
  • Get special discounts;
  • Access official support,
  • Many other tools which will help you to gain more customers and increase reputation on the market by adding open source ITSM to your portfolio.

Discover all benefits of being a partner here: https://glpi-project.org/partners/

Stay connected! Follow us on our social media platforms!

New silver partner in France: All Business

Congratulations! We are happy to announce our new Silver GLPI Network partner in France: All Business.

All Business aims to analyze and improve the information systems. They offer tailor-made solutions to optimize IT infrastructures, improve operational efficiency and reduce costs. Whether you want to modernize your existing systems or integrate new technologies, their team of experts can guide you every step of the way. They are committed to understand your specific needs and by providing solutions aligned with your business objectives.

Their IT consulting services are designed to provide customized solutions that specifically meet your business needs. By working with them, you benefit from their in-depth expertise and commitment to optimize your information systems for maximum performance.

Benefits:

  • Tailor-made solutions;
  • Cost reduction;
  • Improved efficiency.

Website: https://bit.ly/3SVKlDo

We are excited that GLPI ITSM solution is becoming more and more represented all over the world and GLPI Network (our support offer for on-premises – get your IT Infrastructure secured) subscription service will be available for more customers through our new partners.

Our large partnership network is always open for new collaborations. If you are interested in representing one of our products in your country, get in touch with us: https://glpi-project.org/contact_us/

Being a partner means:

  • Having an a direct access to the Teclib´s tech expertise;
  • Get special discounts;
  • Access official support,
  • Many other tools which will help you to gain more customers and increase reputation on the market by adding open source ITSM to your portfolio.

Discover all benefits of being a partner here: https://glpi-project.org/partners/

Stay connected! Follow us on our social media platforms!

How GLPI helps you keep updated with critical news and update

In a fast-paced routine, losing important news and updates is not a rare incident. Analysts do have a lot to do during their day, and the world doesn’t stop. It’s hard to keep up with everything.

Sometimes, leaders may want their teams to be aware of information from some service providers that maintain blogs and pages where useful announcements are inserted. I, Arthur, in the past, used to have three products on my portfolio that used to publish new features announcements, dates of future updates and also notices and alerts about their tools.

I always wanted — and still want — to be aware of what is going on and coming on the next months when the main tools I use have this channel available.

These blogs usually have a service called RSS — Really Simple Syndication — which is a very convenient way to receive updates from your favorite websites without having to visit them manually.

There are several options of RSS Feed Readers. But, adding a new layer of complexity to your daily basis could not be the best approach. GLPI has this tool embedded with the adding of you being able to share some sources of information to Entities, Groups, Users, and Profiles. You add the feed to your instance, and GLPI works as an RSS Feed Reader that may be the official source of information for you and your teams.

Useful links:

https://faq.teclib.com/03_knowledgebase/tools/rssfeed/

https://glpi-user-documentation.readthedocs.io/fr/latest/modules/tools/rssfeed.html

YouTube Video:

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

Evaluating the environmental impact of Digital Technologies: The IEN Project and Teclib’

The IEN (Environmental Impact of Digital Technology) project, launched by IRT SystemX, aims to develop tools to assess the environmental impact of digital technologies. This 36-month project involves major players like Airbus Protect, Teclib’, Total Energies, AFNIC and CentraleSupélec to create standardized evaluation methods.

Objectives of the IEN Project

IEN aims to provide a systemic approach to evaluate the direct and indirect environmental impacts of digital systems, offering standardized indicators based on the full life cycle of digital components.

The role of Teclib’

Teclib’ contributes with its expertise in managing the environmental impact of digital services and software. Its experience in sustainable development and open-source software helps create decision-making tools based on environmental and economic criteria.

Methodology and implementation

IEN’s comprehensive approach includes:

– Defining valuation rules for environmental impacts of physical components at each life cycle stage.

– Creating a decision-making tool for technological choices and data processing methods.

– Sharing a systemic diagnostic guide on environmental impacts with the scientific community, along with training solutions to raise awareness among digital stakeholders.

Perspectives and contributions

Drawing on research from the PSE (Paris-Saclay Energies) project and the CircularIT alliance, IEN promotes the circular economy and ecological transition. Expected outcomes include a common framework and methodology for industries, local authorities, and suppliers to facilitate more sustainable technological choices.

The IEN project is a significant step towards rigorous and standardized evaluation of the environmental impact of digital technologies. With partners like Teclib’, this project aims to provide valuable tools for adopting more environmentally friendly digital practices and supporting the transition to a circular economy.

For more information, visit the website: https://www.irt-systemx.fr/en/projets/ien-project/ 

For more news, join our social networks!