Implemented tree view for selection of samples

This commit is contained in:
2013-09-11 23:44:40 +10:00
parent 7f099bfca4
commit 6d40700cf3
11 changed files with 99 additions and 45 deletions

View File

@@ -0,0 +1,31 @@
{% load static %}
{% load dajaxice_templatetags %}
<html>
<head>
<title>3D Sample Viewer</title>
<link href="{% static "three_d_viewer/css/bootstrap.min.css" %}" rel="stylesheet" media="screen">
<script type="text/javascript" src="{% static "three_d_viewer/jquery-2.0.3.js" %}"></script>
<script type="text/javascript" srv="{% static "three_d_viewer/js/bootstrap.min.js" %}"></script>
</head>
<body onload="load();">
<div class="container">
<div class="page-header">
<h1>Three D Viewer</h1>
<p class="lead">Look at some rocks</p>
</div>
<div class="row">
<div class="col-md-4">
<div class="row">
{% include "three_d_viewer/sampletree.html" %}
</div>
</div>
<div class="col-md-8">
<p>Put some intro text sort of stuff here</p?
</div>
</div>
</div
</body>
</html>