summaryrefslogtreecommitdiffstats
path: root/templates/public/developer_list.html
diff options
context:
space:
mode:
authorIsmael Carnales <icarnales@gmail.com>2009-10-30 19:56:21 +0100
committerIsmael Carnales <icarnales@gmail.com>2009-11-10 01:24:37 +0100
commit79f00ef686e0597cb197ed67ba1462aa60a530bb (patch)
treefa27253b023f1cd6ec9f1d3fd79d0ee6bd727aaa /templates/public/developer_list.html
parentce662e0e0cdb66a7425bfc55bc7342cb152d5e4b (diff)
downloadarchweb-79f00ef686e0597cb197ed67ba1462aa60a530bb.tar.gz
archweb-79f00ef686e0597cb197ed67ba1462aa60a530bb.tar.xz
"imported" public app files from archweb_pub
Diffstat (limited to 'templates/public/developer_list.html')
-rw-r--r--templates/public/developer_list.html60
1 files changed, 60 insertions, 0 deletions
diff --git a/templates/public/developer_list.html b/templates/public/developer_list.html
new file mode 100644
index 0000000..8d1c5be
--- /dev/null
+++ b/templates/public/developer_list.html
@@ -0,0 +1,60 @@
+ <br /><br />
+ <div id="devlist">
+ {% for dev in dev_list %}
+ <a href="#{{ dev.first_name}}{{ dev.last_name.0|capfirst}}">{{ dev.first_name }}{{ dev.last_name.0|capfirst}}</a> &nbsp;
+ {% endfor %}
+ </div><br /><br />
+
+ <table class="center" cellpadding="20">
+ {% for dev in dev_list %}
+ <tr>
+ <td class="devpic">
+ <img src="{{ dev.get_profile.picture.url }}" height="175" width="175" style="border:1px solid black">
+ </td><td>
+ <a name="{{ dev.first_name }}{{ dev.last_name.0|capfirst}}" />
+ {% autoescape off %}
+ <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 %}&nbsp;{% 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>
+ {% endautoescape %}
+ </td>
+ </tr>
+ {% endfor %}
+ </table>