new pisilinux web sites
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<a href="{{URL::base('forum/category_list')}}" class="btn btn-primary">
|
||||
Forum category management</a>
|
||||
<a href="{{URL::base('forum/search')}}" class="btn btn-primary">Search</a>
|
||||
<hr>
|
||||
<form action="" method="post" >
|
||||
|
||||
<div class="form-actions">
|
||||
<div class="control-group">
|
||||
|
||||
<div class="controls">
|
||||
<input type="text" class="span12" name="username" value="" placeholder="Kullanıcı adını yazın">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<button type="submit" class="btn btn-success btn-block">Ara</button>
|
||||
</div>
|
||||
</form>
|
||||
|
||||
<hr>
|
||||
@if (isset($konu))
|
||||
<form action="" method="post">
|
||||
@foreach ($konu as $key)
|
||||
<label>
|
||||
<input type="checkbox" id="check" name="forumDel[]" value="{{$key->id}}"> - {{$key->id}} - {{kelimebol($key->content,25)}} <hr>
|
||||
</label>
|
||||
@endforeach
|
||||
<input type="hidden" name="delete" value="1">
|
||||
<button type="submit" class="btn btn-danger">Delete</button>
|
||||
</form>
|
||||
@else
|
||||
<div class="alert alert-danger">Aradığınız kriterlere uygun sonuç bulunamadı.</div>
|
||||
@endif
|
||||
Reference in New Issue
Block a user