first commit
This commit is contained in:
31
templates/other/gen-text-import.php
Normal file
31
templates/other/gen-text-import.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<div class="action-icons">
|
||||
<a class='btn btn_add' onClick='$("#import").submit();'>Importuj</a>
|
||||
<a class="btn btn_cancel" href="./">Anuluj</a>
|
||||
</div>
|
||||
<div class="browse">
|
||||
<div class="edit-row">
|
||||
<form method='POST' action='index.php?rw=import' id='import'>
|
||||
<div class="group">
|
||||
<label>Kategoria</label>
|
||||
<div class="content">
|
||||
<select name="category_id">
|
||||
<option value="0">---- wybierz kategorię ----</option>
|
||||
<?
|
||||
if ( is_array( $this -> _categories ) ) foreach ( $this -> _categories as $cat )
|
||||
{
|
||||
echo '<option value="' . $cat['id'] . '">' . $cat['category'] . '</option>';
|
||||
}
|
||||
?>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="group">
|
||||
<label>Tekst</label>
|
||||
<div class="content">
|
||||
<textarea name='text' style="width: 700px; height: 200px;"></textarea>
|
||||
</div>
|
||||
<div class="clearfix"></div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user