| Index: includes/jobs/header.tmpl | 
| =================================================================== | 
| --- a/includes/jobs/header.tmpl | 
| +++ b/includes/jobs/header.tmpl | 
| @@ -7,43 +7,49 @@ | 
| <style> | 
| #tabs-openings .ui-tabs-nav-vertical | 
| { | 
| font-size: 16px; | 
| } | 
| </style> | 
| {% endblock %} | 
|  | 
| +{% set GREENHOUSE = 1 %} | 
| +{% set TALENTTRACKER = 2 %} | 
| +{% set EMAIL = 3 %} | 
| + | 
| {% set openings = [ | 
| -  ("IT System Administrator", "it-system-administrator", 189), | 
| -  ("Data Engineer", "data-engineer", 194), | 
| -  ("Technical Support Analyst", "technical-support-analyst", 191), | 
| -  ("Filter List Supporter", "filter-list-supporter", 127), | 
| -  ("Whitelist Maintainer", "whitelist-maintainer", 108), | 
| -  ("Flattr Campaign Coordinator (Student Help)", "flattr-campaign-coordinator-student-help", 195), | 
| -  ("Student Help Acceptable Ads Monitoring", "student-help-acceptable-ads-monitoring", 193), | 
| -  ("Student Help Data Protection (m/w)", "student-help-data-protection", 178), | 
| -  ("Speculative Application", "speculative-application", 51), | 
| +  ("IT System Administrator", "it-system-administrator", TALENTTRACKER, 189), | 
| +  ("Data Engineer", "data-engineer", TALENTTRACKER, 194), | 
| +  ("Technical Support Analyst", "technical-support-analyst", TALENTTRACKER, 191), | 
| +  ("Filter List Supporter", "filter-list-supporter", TALENTTRACKER, 127), | 
| +  ("Whitelist Maintainer", "whitelist-maintainer", TALENTTRACKER, 108), | 
| +  ("Flattr Campaign Coordinator (Student Help)", "flattr-campaign-coordinator-student-help", TALENTTRACKER, 195), | 
| +  ("Student Help Acceptable Ads Monitoring", "student-help-acceptable-ads-monitoring", TALENTTRACKER, 193), | 
| +  ("Student Help Data Protection (m/w)", "student-help-data-protection", TALENTTRACKER, 178), | 
| +  ("Speculative Application", "speculative-application", TALENTTRACKER, 51), | 
| ] %} | 
|  | 
| {% set opening = openings|find(page.split("/")[-1], attribute=1) %} | 
| {% set title = (opening or [title])[0] %} | 
| {% set og_image = "https://eyeo.com/images/eyeo-meta-jobs.png" %} | 
|  | 
| <header class="page-title"> | 
| <h1>Working at eyeo</h1> | 
| </header> | 
|  | 
| <div id="jobs-info" class="content-block"> | 
| <div id="tabs-openings" class="columns-container one-sidebar"> | 
| <div class="column sidebar-left"> | 
| <h3 class="heading centered"><span>Current openings:</span></h3> | 
|  | 
| <ul class="ui-tabs-nav ui-tabs-nav-vertical"> | 
| -        {% for title, file, _ in openings %} | 
| +        {% for opening in openings %} | 
| +          {% set title = opening[0] %} | 
| +          {% set file = opening[1] %} | 
| <li {% if file == page.split("/")[-1] %} class="ui-tabs-active" {% endif %}> | 
| {{("jobs/" + file)|linkify(class="ui-tabs-anchor")}} | 
| {{ title }} | 
| {% if file in german_openings %} | 
| <img src="/images/flags/germany.png" alt="German" width="15" height="10"> | 
| {% endif %} | 
| </a> | 
| </li> | 
|  |