You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by rg...@apache.org on 2015/07/28 11:45:04 UTC

svn commit: r1693056 - /comdev/tools/events_list/templates/events/index.html

Author: rgardler
Date: Tue Jul 28 09:45:03 2015
New Revision: 1693056

URL: http://svn.apache.org/r1693056
Log:
enable marking a group as not appropriate from the event index page

Modified:
    comdev/tools/events_list/templates/events/index.html

Modified: comdev/tools/events_list/templates/events/index.html
URL: http://svn.apache.org/viewvc/comdev/tools/events_list/templates/events/index.html?rev=1693056&r1=1693055&r2=1693056&view=diff
==============================================================================
--- comdev/tools/events_list/templates/events/index.html (original)
+++ comdev/tools/events_list/templates/events/index.html Tue Jul 28 09:45:03 2015
@@ -24,6 +24,7 @@
       <th>Country</th>
       <th>Hashtags</th>
       <th>Local Start Time</th>
+      <th>Group</th>
       <th>Applicable</th>
     </tr>
   </thead>
@@ -39,7 +40,12 @@
 	{% endfor %}
       </td>
       <td data-order='{{ event.date_sort }}'>{{ event.local_start }}</td>
-      <td><a href="{% url 'toggleEventNA' event.id %}">Mark N/A</a></td>
+      <td>{{ event.group }}</td>
+      <td>
+        <a href="{% url 'toggleEventNA' event.id %}">Mark Event N/A</a>
+	<br/>
+	<a href="{% url 'toggleGroupNA' event.group.id %}">Mark Group N/A</a>
+      </td>
     </tr>
     {% endfor %}
   </tbody>