[damned-lies] Split the module column in activity summary



commit 2ce44144e4c5c0fda620438865689172beacbe86
Author: Claude Paroz <claude 2xlibre net>
Date:   Tue Feb 7 19:42:50 2017 +0100

    Split the module column in activity summary
    
    Fixes #778067.

 templates/vertimus/activity_summary.html |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)
---
diff --git a/templates/vertimus/activity_summary.html b/templates/vertimus/activity_summary.html
index 898a6f8..7555d79 100644
--- a/templates/vertimus/activity_summary.html
+++ b/templates/vertimus/activity_summary.html
@@ -28,13 +28,16 @@ $(document).ready(function()
 
 <table class="stats" id="summary">
 <thead><tr>
-  <th>{% trans "Date" %}</th><th>{% trans "Module" %}</th><th>{% trans "State" %}</th>
+  <th>{% trans "Date" %}</th><th>{% trans "Module" %}</th><th>{% trans "Branch" %}</th>
+  <th>{% trans "Description" %}</th><th>{% trans "State" %}</th>
 </tr></thead>
 <tbody>
 {% for activity in activities %}
 <tr>
   <td><span style="display: none;">{{ activity.updated|date:"c" }}</span>{{ 
activity.updated|naturalday:"DATE_FORMAT" }}</td>
-  <td><a href="{{ activity.get_absolute_url }}">{{ activity.branch.module.get_description }} - {{ 
activity.branch.name }} - {{ activity.domain.get_description }} - {{ activity.language.get_name }}</a></td>
+  <td><a href="{{ activity.get_absolute_url }}">{{ activity.branch.module.get_description }}</a></td>
+  <td>{{ activity.branch.name }}</td>
+  <td>{{ activity.domain.get_description }}</td>
   <td>{{ activity.description }}</td>
 </tr>
 {% endfor %}


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]