added vegards changes
authorgreg gay <ggay@ocad.ca>
Thu, 23 Nov 2006 14:00:43 +0000 (14:00 -0000)
committergreg gay <ggay@ocad.ca>
Thu, 23 Nov 2006 14:00:43 +0000 (14:00 -0000)
docs/themes/default/profile.tmpl.php

index 2a5be9c..1f6e673 100644 (file)
 <div class="input-form">\r
 \r
        <div class="row">\r
-               <h3><?php echo AT_print($this->row['login'], 'members.login'); ?></h3>\r
-       </div>\r
-\r
-       <div class="row">\r
-               <a href="inbox/send_message.php?id=<?php echo $this->row['member_id']; ?>"><?php echo _AT('send_message'); ?></a>\r
-       </div>\r
-\r
-       <div class="row">\r
-               <?php echo _AT('name'); ?><br />\r
+               <h3>\r
                <?php if($this->row['first_name'] || $this->row['last_name']) {\r
                        echo AT_print($this->row['first_name'] .' '. $this->row['second_name'] .' '. $this->row['last_name'], 'members.first_name');\r
                } else {\r
                        echo "--";\r
                }\r
                ?>\r
+                       \r
+    (<?php echo AT_print($this->row['login'], 'members.login'); ?>)\r
+               </h3>\r
        </div>\r
 \r
        <div class="row">\r
-               <?php echo _AT('email'); ?><br />\r
+               <p><a href="inbox/send_message.php?id=<?php echo $this->row['member_id']; ?>"><?php echo _AT('send_message'); ?></a></p>\r
+       </div>\r
+\r
+       <div class="row">\r
+               <p><strong><?php echo _AT('email'); ?>:</strong>\r
                <?php if($this->row['private_email']): ?>\r
                        <?php echo _AT('private'); ?>\r
                <?php else: ?>\r
                        <a href="mailto:<?php echo $this->row['email']; ?>"><?php echo $this->row['email']; ?></a>\r
-               <?php endif; ?>\r
+               <?php endif; ?></p>\r
        </div>\r
 \r
        <div class="row">\r
-               <?php echo _AT('web_site'); ?><br />\r
+               <p><strong><?php echo _AT('web_site'); ?>:</strong>\r
                <?php if ($this->row['website']) { \r
                        echo '<a href="'.$this->row['website'].'">'.AT_print($this->row['website'], 'members.website').'</a>'; \r
                } else {\r
                        echo "--";\r
                }\r
-               ?>\r
+               ?></p>\r
        </div>\r
 \r
        <div class="row">\r
-               <?php echo _AT('phone'); ?><br />\r
+               <p><strong><?php echo _AT('phone'); ?>:</strong>\r
                <?php if ($this->row['phone']) { \r
                        echo $this->row['phone'];\r
                } else {\r
                        echo "--";\r
                }\r
-               ?>\r
+               ?></p>\r
        </div>\r
 \r
        <div class="row">\r
-               <?php echo _AT('status'); ?><br />\r
+               <p><strong><?php echo _AT('status'); ?>:</strong>\r
                <?php echo $this->status; ?>\r
                <?php \r
                if ($this->privs) { \r
@@ -75,7 +74,7 @@
                        $priv_string = substr($priv_string, 0, -2);\r
                        echo $priv_string .')';\r
                }\r
-               ?>\r
+               ?></p>\r
        </div>\r
 </div>\r
 </form>
\ No newline at end of file