split database name in own file and variable
[angular-mojolicious.git] / public / app / conference / symposiums.html
index 2be88a4..ff5f18c 100644 (file)
@@ -4,13 +4,20 @@
 <meta charset="utf-8">
 <script src="angular.js" ng:autobind></script>
 
-<title>Conference registration</title>
+<script type="text/javascript" src="database.js"></script> 
 <script type="text/javascript" src="symposiums.js"></script> 
 
+<title>Conference registration</title>
+
+</head>
+<body>
+
 <div ng:controller="Symposiums"> 
 
+<h1>Submitted symposiums</h1>
+
 <div ng:repeat="s in data.response.rows">
-<h1 ng:show="s.key[1] == 1">{{s.key[0]}}</h1>
+<h2 ng:show="s.key[1] == 1">{{s.key[0]}}</h2>
 {{s.key[1]}}. {{s.value}}
 </div>
 
@@ -21,6 +28,7 @@ data={{data}}
 
 </div> 
 
+<a href="registration.html">registration</a>
 
 </body>
 </html>