Path: blob/1.0-develop/resources/views/admin/locations/index.blade.php
7461 views
@extends('layouts.admin')12@section('title')3Locations4@endsection56@section('content-header')7<h1>Locations<small>All locations that nodes can be assigned to for easier categorization.</small></h1>8<ol class="breadcrumb">9<li><a href="{{ route('admin.index') }}">Admin</a></li>10<li class="active">Locations</li>11</ol>12@endsection1314@section('content')15<div class="row">16<div class="col-xs-12">17<div class="box box-primary">18<div class="box-header with-border">19<h3 class="box-title">Location List</h3>20<div class="box-tools">21<button class="btn btn-sm btn-primary" data-toggle="modal" data-target="#newLocationModal">Create New</button>22</div>23</div>24<div class="box-body table-responsive no-padding">25<table class="table table-hover">26<tbody>27<tr>28<th>ID</th>29<th>Short Code</th>30<th>Description</th>31<th class="text-center">Nodes</th>32<th class="text-center">Servers</th>33</tr>34@foreach ($locations as $location)35<tr>36<td><code>{{ $location->id }}</code></td>37<td><a href="{{ route('admin.locations.view', $location->id) }}">{{ $location->short }}</a></td>38<td>{{ $location->long }}</td>39<td class="text-center">{{ $location->nodes_count }}</td>40<td class="text-center">{{ $location->servers_count }}</td>41</tr>42@endforeach43</tbody>44</table>45</div>46</div>47</div>48</div>49<div class="modal fade" id="newLocationModal" tabindex="-1" role="dialog">50<div class="modal-dialog" role="document">51<div class="modal-content">52<form action="{{ route('admin.locations') }}" method="POST">53<div class="modal-header">54<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>55<h4 class="modal-title">Create Location</h4>56</div>57<div class="modal-body">58<div class="row">59<div class="col-md-12">60<label for="pShortModal" class="form-label">Short Code</label>61<input type="text" name="short" id="pShortModal" class="form-control" />62<p class="text-muted small">A short identifier used to distinguish this location from others. Must be between 1 and 60 characters, for example, <code>us.nyc.lvl3</code>.</p>63</div>64<div class="col-md-12">65<label for="pLongModal" class="form-label">Description</label>66<textarea name="long" id="pLongModal" class="form-control" rows="4"></textarea>67<p class="text-muted small">A longer description of this location. Must be less than 191 characters.</p>68</div>69</div>70</div>71<div class="modal-footer">72{!! csrf_field() !!}73<button type="button" class="btn btn-default btn-sm pull-left" data-dismiss="modal">Cancel</button>74<button type="submit" class="btn btn-success btn-sm">Create</button>75</div>76</form>77</div>78</div>79</div>80@endsection818283