Files
PyRIGS/RIGS/templates/RIGS/rigboard.html
Tom Price c6aed3db75 Moved the table element from the main rigboard out to something reusuable.
Added the ability to view organisations by people and vice versa, as well as the option to see all the rigs associated with orgs/people/venues.

Added helper properties for the above
2015-01-22 20:48:37 +00:00

33 lines
1.1 KiB
HTML

{% extends 'base.html' %}
{% block title %}Rigboard{% endblock %}
{% block content %}
<div class="row">
<div class="col-sm-12">
<div class="row">
<div class="col-sm-10">
<h3>Rigboard</h3>
</div>
<div class="col-sm-2">
<a href="{% url 'event_create' %}" class="btn btn-default pull-right">New <span
class="glyphicon glyphicon-plus"></span></a>
</div>
{% comment %}
{# Bring search back at a later date #}
<div class="col-sm-3 col-sm-offset-9">
<form class="form form-horizontal col-sm-12">
<div class="form-group">
<input type="search" name="q" placeholder="Search" value="{{ request.GET.q }}"
class="form-control"/>
</div>
</form>
</div>
{% endcomment %}
</div>
{# .row #}
{% include 'RIGS/event_table.html' %}
</div>
</div>
{% endblock %}