diff options
author | eliott <eliott@cactuswax.net> | 2007-12-29 18:42:50 -0800 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2007-12-29 18:42:50 -0800 |
commit | 8fcdf0c2cde1c3cff98be4572a0e9e3a1d910901 (patch) | |
tree | aa49de02aa64dfade956dbd9e79f09bf7fc06f13 /templates/public/developers.html | |
parent | 45454908dfa2c925c4689d74fc84c4c2055257ab (diff) |
Moved some templates around
Diffstat (limited to 'templates/public/developers.html')
-rw-r--r-- | templates/public/developers.html | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/templates/public/developers.html b/templates/public/developers.html deleted file mode 100644 index 6b1fe8b7..00000000 --- a/templates/public/developers.html +++ /dev/null @@ -1,67 +0,0 @@ -{% extends "base.html" %} - -{% block content %} -<div class="box"> - <h2 class="title">Arch Linux Core Developers</h2> - <br /><br /> - <div id="devlist"> - {% for dev in devs %} - <a href="#{{ dev.first_name}}">{{ dev.first_name }}</a> - {% endfor %} - </div><br /><br /> - - <table class="center" cellpadding="20"> - {% for dev in devs %} - <tr> - <td class="devpic"> - <img src="{{ dev.get_profile.get_picture_url }}" height="175" width="175" style="border:1px solid black"> - </td><td> - <a name="{{ dev.first_name }}" /> - <table class="deventry" cellspacing="5"> - <tr> - <th>Name:</th> - <td>{{ dev.get_full_name }}</td> - </tr><tr> - <th>Alias:</th> - <td>{{ dev.get_profile.alias }}</td> - </tr><tr> - <th>Email:</th> - <td>{{ dev.get_profile.public_email }}</td> - </tr><tr> - <th>Other Contact:</th> - <td>{{ dev.get_profile.other_contact }}</td> - </tr><tr> - <th>Roles:</th> - <td>{{ dev.get_profile.roles }}<br /> - </td> - </tr><tr> - <th>Website:</th> - <td>{{ dev.get_profile.website }}</td> - </tr><tr> - <th>Occupation:</th> - <td>{{ dev.get_profile.occupation }}</td> - </tr><tr> - <th>YOB:</th> - <td>{% if dev.get_profile.yob %}{{ dev.get_profile.yob }}{% else %} {% endif %}</td> - </tr><tr> - <th>Location:</th> - <td>{{ dev.get_profile.location }}</td> - </tr><tr> - <th>Languages:</th> - <td>{{ dev.get_profile.languages }}</td> - </tr><tr> - <th>Interests:</th> - <td>{{ dev.get_profile.interests }}</td> - </tr><tr> - <th>Favorite Distros:</th> - <td>{{ dev.get_profile.favorite_distros }}</td> - </tr> - </table> - </td> - </tr> - {% endfor %} - </table> -</div> -<br /><br /> -{% endblock %} - |