mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-23 05:09:56 +09:00
git-svn-id: http://xe-core.googlecode.com/svn/trunk@664 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
4c0653db24
commit
2a32a18709
7 changed files with 59 additions and 1 deletions
28
modules/editor/tpl/view_component.html
Normal file
28
modules/editor/tpl/view_component.html
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
<!--%import("css/editor.css")-->
|
||||
|
||||
<div class="component_view_window">
|
||||
<input type="hidden" name="component_name" value="{$component_name}" />
|
||||
<table border="1" width="100%">
|
||||
<tr>
|
||||
<th>{$lang->component_name}</th>
|
||||
<td>{$component->component_name} ver. {$component->version}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->component_author}</th>
|
||||
<td><a href="mailto:{$component->author->email_address}">{$component->author->name}</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->component_link}</th>
|
||||
<td><a href="#" onclick="winopen('{$component->author->link}');return false;">{$component->author->link}</a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>{$lang->component_description}</th>
|
||||
<td>{nl2br($component->description)}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
<input type="button" value="{$lang->cmd_close}" class="editor_button" onclick="window.close();"/>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue