{% load i18n %}
{% trans "Instructions on templating the card" %}
{% blocktrans %} You will be able to use the following data in your individual template. The template has to been written in the Django template language. {% endblocktrans %}
{% verbatim %}{{ chip_number }}{% endverbatim %} - {% trans "The chip number as string" %}
{% verbatim %}{{ person.x }}{% endverbatim %} - {% trans "This will give you access to any attributes of the person object like name, personal data or contact data." %}
{% verbatim %}{{ valid_until }}{% endverbatim %} - {% trans "The date until when the card is valid" %}
{% verbatim %} {{ media_files.0.media_file.url }}{% endverbatim %} - {% trans "This will give you access to the uploaded media files. Replace 0 by the number of your media file (starting with 0)." %}