public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/gentoo-packages:master commit in: gpackages/template/
@ 2012-06-15  0:00 Slava Bacherikov
  0 siblings, 0 replies; 3+ messages in thread
From: Slava Bacherikov @ 2012-06-15  0:00 UTC (permalink / raw
  To: gentoo-commits

commit:     e0fec7197a19243aafa30a7a6546d70c108fa12e
Author:     Slava Bacherikov <slava <AT> bacher09 <DOT> org>
AuthorDate: Fri Jun 15 00:00:31 2012 +0000
Commit:     Slava Bacherikov <slava <AT> bacherikov <DOT> org <DOT> ua>
CommitDate: Fri Jun 15 00:00:31 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gentoo-packages.git;a=commit;h=e0fec719

Little extension  base.html

---
 gpackages/template/base.html |    7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/gpackages/template/base.html b/gpackages/template/base.html
index 5242087..b63314b 100644
--- a/gpackages/template/base.html
+++ b/gpackages/template/base.html
@@ -1,3 +1,4 @@
+{% load url from future %}
 <!DOCTYPE html>
 <html lang="en">
   <head>
@@ -116,9 +117,11 @@ Text
                         <div class="well">
                         <ul class="nav nav-list">
                             <li class="nav-header">Navigation</li>
-                            <li><a href="#">Categories</a></li>
+                            <li><a href="{% url 'categories' %}">Categories</a></li>
                             <li><a href="#">Ebuilds</a></li>
                             <li><a href="#">Packages</a></li>
+                            <li><a href="{% url 'maintainers' %}">Maintainers</a></li>
+                            <li><a href="{% url 'herds' %}">Herds</a></li>
                         </ul>
                        </div>
             </div> <!-- span3 --><!--}}}-->
@@ -127,7 +130,7 @@ Text
                 <div class="span12">
                     <hr>
                                 <footer class="footer">
-                                <p class="pull-right">Copyright 2007-2012 Gentoo Foundation, Inc.</p>
+                                <p class="pull-right">Copyright 2007-{% now "Y" %} Gentoo Foundation, Inc.</p>
                               </footer>
                 </div>
         </div><!--}}}-->



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/gentoo-packages:master commit in: gpackages/template/
@ 2012-06-15 23:28 Slava Bacherikov
  0 siblings, 0 replies; 3+ messages in thread
From: Slava Bacherikov @ 2012-06-15 23:28 UTC (permalink / raw
  To: gentoo-commits

commit:     241debba25bb32132b5b0fd6b002c70aa0a7e4a1
Author:     Slava Bacherikov <slava <AT> bacher09 <DOT> org>
AuthorDate: Fri Jun 15 17:06:55 2012 +0000
Commit:     Slava Bacherikov <slava <AT> bacherikov <DOT> org <DOT> ua>
CommitDate: Fri Jun 15 17:06:55 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gentoo-packages.git;a=commit;h=241debba

Add update info to repositories view

---
 gpackages/template/base.html         |    1 +
 gpackages/template/repositories.html |    3 +++
 2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/gpackages/template/base.html b/gpackages/template/base.html
index 5347af5..0dfccae 100644
--- a/gpackages/template/base.html
+++ b/gpackages/template/base.html
@@ -124,6 +124,7 @@ Text
                             <li><a href="#">Packages</a></li>
                             <li><a href="{% url 'maintainers' %}">Maintainers</a></li>
                             <li><a href="{% url 'herds' %}">Herds</a></li>
+                            <li><a href="{% url 'repositories' %}">Repositories</a></li>
                         </ul>
                        </div>
             </div> <!-- span3 --><!--}}}-->

diff --git a/gpackages/template/repositories.html b/gpackages/template/repositories.html
index 9088251..671cdb1 100644
--- a/gpackages/template/repositories.html
+++ b/gpackages/template/repositories.html
@@ -6,11 +6,13 @@
     <colgroup>
         <col class="span1" >
         <col class="span8" >
+        <col class="span2" >
     </colgroup>
     <thead>
             <tr>
                 <th>Category</th>
                 <th>Description</th>
+                <th>Last updated</th>
             </tr>
     </thead>
     <tbody>
@@ -18,6 +20,7 @@
             <tr>
                 <td class="nowrap"><a href="#">{{ repository.name }}</a></td>
                 <td>{{ repository.description|default_if_none:"" }}</td>
+                <td>{{ repository.updated_datetime|date:"d m Y H:i:s" }}</td>
             </tr>
         {% endfor %}
     </tbody>



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [gentoo-commits] proj/gentoo-packages:master commit in: gpackages/template/
@ 2012-06-25 23:02 Slava Bacherikov
  0 siblings, 0 replies; 3+ messages in thread
From: Slava Bacherikov @ 2012-06-25 23:02 UTC (permalink / raw
  To: gentoo-commits

commit:     86f31339a6db66a6a1fb8f36246315ad330ff800
Author:     Slava Bacherikov <slava <AT> bacher09 <DOT> org>
AuthorDate: Mon Jun 25 23:00:09 2012 +0000
Commit:     Slava Bacherikov <slava <AT> bacherikov <DOT> org <DOT> ua>
CommitDate: Mon Jun 25 23:00:09 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/gentoo-packages.git;a=commit;h=86f31339

Changes in license_groups template

---
 gpackages/template/license_groups.html |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/gpackages/template/license_groups.html b/gpackages/template/license_groups.html
index af173e4..00bc0a0 100644
--- a/gpackages/template/license_groups.html
+++ b/gpackages/template/license_groups.html
@@ -17,8 +17,7 @@
         {% for license_group in license_groups %}
             <tr>
                 <td class="nowrap"><a href="#">{{ license_group.name }}</a></td>
-                <td>{% for license in license_group.licenses.all %}<a href="#">{{ license }}</a>, {% endfor %}</td>
-                <td>{{ herd.description|default_if_none:"" }}</td>
+                <td>{% for license in license_group.licenses.all %}<a href="#">{{ license }}</a>{% if not forloop.last %},{% endif %} {% endfor %}</td>
             </tr>
         {% endfor %}
     </tbody>



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-06-25 23:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-25 23:02 [gentoo-commits] proj/gentoo-packages:master commit in: gpackages/template/ Slava Bacherikov
  -- strict thread matches above, loose matches on Subject: below --
2012-06-15 23:28 Slava Bacherikov
2012-06-15  0:00 Slava Bacherikov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox