From 0ff4f541439ba1bc4bc09b47ffee93241c055608 Mon Sep 17 00:00:00 2001 From: Abhilash Raj Date: Mon, 2 Jul 2018 15:35:29 -0700 Subject: [PATCH] Fix the templates to remove the language column. --- src/postorius/templates/postorius/domain/template_index.html | 2 -- src/postorius/templates/postorius/lists/template_list.html | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/postorius/templates/postorius/domain/template_index.html b/src/postorius/templates/postorius/domain/template_index.html index e358fcd9..84a1a3e9 100644 --- a/src/postorius/templates/postorius/domain/template_index.html +++ b/src/postorius/templates/postorius/domain/template_index.html @@ -23,14 +23,12 @@ {% trans 'Template Name' %} - {% trans 'Language' %}   {% for template in object_list %} {{ template.description }} - {{ template.language | language_name_local }} ({{ template.language | language_name }}) {% trans 'Edit' %} {% trans 'Delete' %} diff --git a/src/postorius/templates/postorius/lists/template_list.html b/src/postorius/templates/postorius/lists/template_list.html index 463f775b..296bae42 100644 --- a/src/postorius/templates/postorius/lists/template_list.html +++ b/src/postorius/templates/postorius/lists/template_list.html @@ -22,14 +22,12 @@ {% trans 'Template Name' %} - {% trans 'Language' %}   {% for template in object_list %} {{ template.description }} - {{ template.language | language_name_local }} ({{ template.language | language_name }}) {% trans 'Edit' %} {% trans 'Delete' %} -- 2.11.4.GIT