diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-30 14:41:10 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-30 14:41:10 +0000 |
commit | 96acf3d78a3befa05da98a909d62f6d3feefaf6b (patch) | |
tree | 183300034ae15678af1b2187e7f8c0372356ea18 | |
parent | f692235ef64cdf3d90cba3a0f3434983adb9e480 (diff) | |
download | elgg-96acf3d78a3befa05da98a909d62f6d3feefaf6b.tar.gz elgg-96acf3d78a3befa05da98a909d62f6d3feefaf6b.tar.bz2 |
Minor improvements to default entity view.
git-svn-id: https://code.elgg.org/elgg/trunk@1604 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | languages/en.php | 6 | ||||
-rw-r--r-- | views/default/export/entity.php | 30 |
2 files changed, 12 insertions, 24 deletions
diff --git a/languages/en.php b/languages/en.php index 3d988fb1c..fa0c3981d 100644 --- a/languages/en.php +++ b/languages/en.php @@ -401,7 +401,11 @@ 'spotlight' => "Spotlight",
'all' => "All",
- 'by' => 'by',
+ 'by' => 'by', + + 'annotations' => "Annotations", + 'relationships' => "Relationships", + 'metadata' => "Metadata",
/**
* Input / output strings
diff --git a/views/default/export/entity.php b/views/default/export/entity.php index 71e3b2faf..98fb16920 100644 --- a/views/default/export/entity.php +++ b/views/default/export/entity.php @@ -25,12 +25,7 @@ { ?> <div> - <table> - <tr> - <td><b><?php echo $k; ?>: </b></td> - <td><?php echo $v; ?></td> - </tr> - </table> + <p><b><?php echo $k; ?>: </b><?php echo $v; ?></p> </div> <?php } @@ -39,18 +34,13 @@ <?php if ($metadata) { ?> <div id="metadata"> -<h2>Metadata</h2> +<h2><?php echo elgg_echo('metadata'); ?></h2> <?php foreach ($metadata as $m) { ?> <div> - <table> - <tr> - <td><b><?php echo $m->name; ?>: </b></td> - <td><?php echo $m->value; ?></td> - </tr> - </table> + <p><b><?php echo $m->name; ?>: </b><?php echo $m->value; ?></p> </div> <?php } @@ -61,17 +51,14 @@ <?php if ($annotations) { ?> <div id="annotations"> -<h2>Annotations</h2> +<h2><?php echo elgg_echo('annotations'); ?></h2> <?php foreach ($annotations as $a) { ?> <div> <table> - <tr> - <td><b><?php echo $a->name; ?>: </b></td> - <td><?php echo $a->value; ?></td> - </tr> + <p><b><?php echo $a->name; ?>: </b><?php echo $a->value; ?></p> </table> </div> <?php @@ -82,17 +69,14 @@ <?php if ($relationships) { ?> <div id="relationship"> -<h2>Relationships</h2> +<h2><?php echo elgg_echo('relationships'); ?></h2> <?php foreach ($relationships as $r) { ?> <div> <table> - <tr> - <td><b><?php echo $r->relationship; ?>: </b></td> - <td><?php echo $r->guid_two; ?></td> - </tr> + <p><b><?php echo $r->relationship; ?>: </b><?php echo $r->guid_two; ?></p> </table> </div> <?php |