diff options
Diffstat (limited to 'h-source/Application/Views/Desktop/Meet/hardware.php')
-rw-r--r-- | h-source/Application/Views/Desktop/Meet/hardware.php | 36 |
1 files changed, 7 insertions, 29 deletions
diff --git a/h-source/Application/Views/Desktop/Meet/hardware.php b/h-source/Application/Views/Desktop/Meet/hardware.php index 337c644..c8f5a7a 100644 --- a/h-source/Application/Views/Desktop/Meet/hardware.php +++ b/h-source/Application/Views/Desktop/Meet/hardware.php @@ -20,33 +20,11 @@ // along with h-source. If not, see <http://www.gnu.org/licenses/>. ?> - <div id="left"> - - <div class="position_tree_box"> - <a href="<?php echo $this->baseUrl."/home/index/$lang";?>">Home</a> » <a href="<?php echo $this->baseUrl."/meet/user/$lang/$meet_username";?>">meet <b><?php echo $meet_username;?></b></a> » <a href="<?php echo $this->baseUrl."/meet/contributions/$lang/$meet_username";?>">contributions</a> » hardware contributions - </div> - - <div class="contrib_explain_box"> - hardware contributions of <?php echo $meet_username;?> - </div> - - <div class="external_users_contrib"> - <?php foreach ($table as $item) {?> - <div class="users_contrib_item"> + <?php - <div class="contribution_item"> - <?php - - $name = $item['hardware']['model']; - $type = $item['hardware']['type']; - $id_hard = $item['hardware']['id_hard']; - - ?> - <?php echo $type;?> <a href="<?php echo $this->baseUrl."/".MyStrings::$reverse[$type]."/view/$lang/$id_hard/".encodeUrl($name);?>"><?php echo $name;?></a> - </div> - - </div> - <?php } ?> - </div> - - </div>
\ No newline at end of file + $name = $item['hardware']['model']; + $type = $item['hardware']['type']; + $id_hard = $item['hardware']['id_hard']; + + ?> + <?php echo $type;?> <a href="<?php echo $this->baseUrl."/".MyStrings::$reverse[$type]."/view/$lang/$id_hard/".encodeUrl($name);?>"><?php echo $name;?></a>
\ No newline at end of file |