Changeset - 3a224ca78edf
[Not reviewed]
0 3 0
Bradley Kuhn (bkuhn) - 12 years ago 2011-10-28 08:43:29
bkuhn@ebb.org
Correct URLs for /about that reference long-since non-existent "team" directory (patch from Martin Michlmayr <tbm@hp.com>)
3 files changed with 3 insertions and 3 deletions:
0 comments (0 inline, 0 general)
www/conservancy/apps/staff/models.py
Show inline comments
...
 
@@ -17,14 +17,14 @@ class Person(models.Model):
 
    currently_employed = models.BooleanField(default=True)
 

	
 
    date_created = models.DateTimeField(auto_now_add=True)
 
    date_last_modified = models.DateTimeField(auto_now=True)
 

	
 
    class Meta:
 
        verbose_name_plural = 'people'
 

	
 
    def __unicode__(self):
 
        return self.username
 

	
 
    def biography_url(self):
 
        return u"/about/team/#%s" % self.username
 
        return u"/about/#%s" % self.username
 

	
www/conservancy/static/about/board/index.html
Show inline comments
 
{% extends "base_about.html" %}
 
{% block subtitle %}Directors - {% endblock %}
 
{% block submenuselection %}Directors{% endblock %}
 
{% block content %}
 

	
 
<h1>Directors</h1>
 

	
 
<p>Like many non-profits, Conservancy is directed by a
 
self-perpetuating Board of Directors, who
 
appoint <a href="/about/team/officers/">Officers</a> to carry out the
 
appoint <a href="/about/officers/">Officers</a> to carry out the
 
day-to-day operations of the organization.  The Directorship of the
 
Conservancy includes both talented non-profit managers and experienced
 
FLOSS project leaders who can both guide the administrative operations of
 
the organization as well as mentor member project leaders as needed.  Our
 
Directors constantly search for additional directors who can contribute a
 
variety of expertise and perspective related to the Conservancy's
 
mission.</p>
 

	
 
<p>Currently, the directors of Conservancy are:</p>
 

	
 
<h2>Jeremy Allison</h2>
 

	
www/conservancy/static/about/officers/index.html
Show inline comments
 
{% extends "base_about.html" %}
 
{% block subtitle %}Officers - {% endblock %}
 
{% block submenuselection %}Officers{% endblock %}
 
{% block content %}
 

	
 
<h1>Officers</h1>
 

	
 
<p>The <a href="/about/team/board/">Board of Directors</a> of the Conservancy
 
<p>The <a href="/about/board/">Board of Directors</a> of the Conservancy
 
elects its officers.  The current officers are:</p>
 

	
 
<h2>Bradley M. Kuhn - President and Board Chairperson</h2>
 

	
 
<p>Bradley M. Kuhn began his work in the Free Software Movement as a
 
volunteer when, in 1992, he became an early adopter of the popular
 
GNU/Linux operating system, and began contributing to various Free
 
Software projects.  He worked during the 1990s as a system administrator
 
and software development consultant for Westinghouse, Lucent Technologies,
 
and numerous small companies.  He also spent one year teaching Advanced
 
Placement Computer Science (using GNU/Linux and GCC) at Walnut Hills High
 
School in Cincinnati.  In January 2000, he was hired by the Free Software
0 comments (0 inline, 0 general)