forked from projects/thebadspace
ro
a109b1b5c1
The admin area needed to be reorganized as it was a bit all over the place to accomodate new features. And edit link was added to location detail pages so authorized members can edit when necessary. Form elements were loosened up a bit to give them a bit more breathing room
16 lines
426 B
PHP
16 lines
426 B
PHP
@extends('frame')
|
|
|
|
@section('title', 'Den | Location Admin')
|
|
|
|
@section('main-content')
|
|
@parent
|
|
<section>
|
|
<article>
|
|
<h2>Manage Locations</h2>
|
|
<h3>Update Location Data</h3>
|
|
<a href="/den/admin/update">Update Current Sources Data</a><br />
|
|
<a href="/den/admin/compile">Update Locations Data</a>
|
|
<h3>View Location Listings</h3>
|
|
</article>
|
|
</section>
|
|
@endsection |