[damned-lies] GNOME foot invasion



commit bc031181ede98295b9da838f26026d15880f30e5
Author: Gil Forcada <gforcada gnome org>
Date:   Mon Oct 15 23:08:01 2012 +0200

    GNOME foot invasion
    
    Added the class "foot" to some lists so that instead of showing
    a boring square dot, now they show a fancy GNOME logo.

 templates/people/person_detail.html          |    2 +-
 templates/people/person_team_membership.html |    2 +-
 templates/teams/team_base.html               |    4 ++--
 templates/teams/team_detail.html             |    4 ++--
 4 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/templates/people/person_detail.html b/templates/people/person_detail.html
index 1d7a56f..68ba511 100644
--- a/templates/people/person_detail.html
+++ b/templates/people/person_detail.html
@@ -38,7 +38,7 @@ $(document).ready(function()
 
 {% if person.maintains_modules.all %}
 <h2>{% trans "Module maintenance" %}</h2>
-<ul>
+<ul class="foot">
   {% for module in person.maintains_modules.all %}
   <li><a href="{{ module.get_absolute_url }}">{{ module.get_description }}</a></li>
   {% endfor %}
diff --git a/templates/people/person_team_membership.html b/templates/people/person_team_membership.html
index 9a0f2bb..d9f0608 100644
--- a/templates/people/person_team_membership.html
+++ b/templates/people/person_team_membership.html
@@ -4,7 +4,7 @@
 
 {% if person.role_set.all %}
 <h2>{% trans "Team membership" %}</h2>
-<ul>
+<ul class="foot">
   {% for role in person.role_set.all %}
   {% with role.get_role_display as role_name %}
   <li>{% blocktrans with role.team|linked_with:role.team.get_description|safe as team_name %}Member of {{ team_name }} team ({{ role_name }}){% endblocktrans %}
diff --git a/templates/teams/team_base.html b/templates/teams/team_base.html
index 73e5677..39c9d26 100644
--- a/templates/teams/team_base.html
+++ b/templates/teams/team_base.html
@@ -22,7 +22,7 @@
 
             <dt>{% trans "Bugzilla:" %}</dt>
             <dd>
-                <ul>
+                <ul class="foot">
                     <li><a href="{{ language.bugs_url_enter|safe }}">{% trans "Report Bug in Translation" %}</a></li>
                     <li><a href="{{ language.bugs_url_show|safe }}">{% trans "Show Existing Bugs" %}</a></li>
                 </ul>
@@ -31,7 +31,7 @@
             {% if team.mailing_list %}
             <dt>{% trans "Mailing List:" %}</dt>
             <dd>
-                <ul>
+                <ul class="foot">
                     <li><a href="mailto:{{ team.mailing_list }}">{% trans "Send e-mail to the list" %}</a></li>
                     {% if team.mailing_list_subscribe %}
                         <li><a href="{{ team.mailing_list_subscribe }}">{% trans "Subscribe" %}</a></li>
diff --git a/templates/teams/team_detail.html b/templates/teams/team_detail.html
index de9e2a3..f1e99ed 100644
--- a/templates/teams/team_detail.html
+++ b/templates/teams/team_detail.html
@@ -85,7 +85,7 @@ $(document).ready(function() {
         {% if group.form %}
         <form action="#" method="POST">
         {% csrf_token %}
-        <ul>
+        <ul class="foot">
         {% for field in group.form.get_fields %}
           <li>{{ field.label|safe }} {{ field }}</li>
         {% endfor %}
@@ -97,7 +97,7 @@ $(document).ready(function() {
       {% if not group.members %}
           <p><em>{{ group.no_member }}</em></p>
       {% else %}
-        <ul>
+        <ul class="foot">
         {% for member in group.members %}
           <li><a href="{{ member.get_absolute_url }}"
               {% if can_edit_team %}



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