Commit 34d81dc0 authored by Evren Kutar's avatar Evren Kutar

build version in dist folder

parent 2ec25304
This diff is collapsed.
This diff is collapsed.
<!DOCTYPE html>
<!--[if lt IE 7]>
<html lang="en" ng-app="ulakbus" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>
<html lang="en" ng-app="ulakbus" class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>
<html lang="en" ng-app="ulakbus" class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html lang="en" ng-app="ulakbus" class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>ULAKBUS</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="app.css">
<!--<script src="bower_components/html5-boilerplate/js/vendor/modernizr-2.6.2.min.js"></script>-->
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed"
data-toggle="collapse" data-target="#navbar"
aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">ULAKBUS</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="#/dashboard" translate>Dashboard</a></li>
<li><a href="#/login"translate>Login</a></li>
<li><a href="javascript:void(0);" logout translate>Logout</a></li>
</ul>
<form class="navbar-form navbar-right">
<input type="text" class="form-control" placeholder="Search...">
</form>
</div>
</div>
</nav>
<div class="container-fluid">
<div class="row">
<div class="col-sm-3 col-md-2 sidebar">
<ul class="nav nav-sidebar">
<!--<li active-link="active"><a href="#/students">Students</a></li>-->
<!--<li active-link="active"><a href="#/student/add">New Student</a></li>-->
<li active-link="active"><a href="#/staffs" translate>Staffs
</a></li>
<li active-link="active"><a href="#/staff/add" translate>New Staff</a>
</li>
<!--<li active-link="active"><a href="#/input_types">Types</a></li>-->
</ul>
</div>
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main"
ng-view>
</div>
<hr>
<div>UlakbusUI app: v<span app-version></span></div>
</div>
</div>
<!-- In production use:
<script src="//ajax.googleapis.com/ajax/libs/angularjs/x.x.x/angular.min.js"></script>
-->
<script src="bower_components/components.js"></script>
<script src="shared/translations.js"></script>
<script src="templates.js"></script>
<script src="app.js"></script>
</body>
</html>
angular.module('gettext').run(['gettextCatalog', function (gettextCatalog) {
/* jshint -W100 */
gettextCatalog.setStrings('tr', {"Dashboard":"Panel","Login":"Giriş","Logout":"Çıkış","New Staff":"Yeni Personel","Staffs":"Personeller"});
/* jshint +W100 */
}]);
\ No newline at end of file
angular.module('templates-prod', ['components/auth/login.html', 'components/dashboard/dashboard.html', 'components/staff/templates/add.html', 'components/staff/templates/edit.html', 'components/staff/templates/list.html', 'components/staff/templates/show.html', 'components/student/student_add_template.html', 'components/student/student_list_template.html', 'components/types/types_template.html']);
angular.module("components/auth/login.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("components/auth/login.html",
"<div ng-app=\"ulakbus.auth\">\n" +
" <div class=\"col-md-6\">\n" +
" <h1>Ulakbüs Login Form</h1>\n" +
" <span class=\"label label-warning\">{{message}}</span>\n" +
" <form name=\"loginForm\" sf-schema=\"schema\" sf-form=\"form\" sf-model=\"model\" ng-submit=\"onSubmit(loginForm)\"></form>\n" +
" </div>\n" +
"</div>");
}]);
angular.module("components/dashboard/dashboard.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("components/dashboard/dashboard.html",
"<div ng-app=\"ulakbus.dashboard\">\n" +
" <div class=\"starter-template\">\n" +
" <h1>Main Dashboard</h1>\n" +
" {{ testData }}\n" +
" </div>\n" +
"</div>");
}]);
angular.module("components/staff/templates/add.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("components/staff/templates/add.html",
"<div ng-app=\"ulakbus.staff\">\n" +
" <ng-include src=\"'shared/templates/add.html'\"></ng-include>\n" +
"</div>");
}]);
angular.module("components/staff/templates/edit.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("components/staff/templates/edit.html",
"<div ng-app=\"ulakbus.staff\">\n" +
" <div class=\"col-md-6\">\n" +
" <h1>{{ schema.title }}</h1>\n" +
" <form name=\"formgenerated\" sf-schema=\"schema\" sf-form=\"form\" sf-model=\"model\" ng-submit=\"onSubmit(formgenerated)\"></form>\n" +
" </div>\n" +
"</div>");
}]);
angular.module("components/staff/templates/list.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("components/staff/templates/list.html",
"<table class=\"table table-bordered table-responsive\">\n" +
" <thead>\n" +
" <tr>\n" +
" <!--<th>{{ staffs[0].key }}</th>-->\n" +
" <th ng-repeat=\"(key,value) in staffs[0].data\">{{ key }}</th>\n" +
" <th>action</th>\n" +
" </tr>\n" +
" </thead>\n" +
" <tbody>\n" +
" <tr ng-repeat=\"staff in staffs\">\n" +
" <!--<td><a ng-href=\"#/staff/{{staff.id}}\">{{staff.name}}</a></td>-->\n" +
" <td ng-repeat=\"(key,value) in staff.data\">{{value}}</td>\n" +
" <td>\n" +
" <a ng-href=\"#/staff/edit/{{staff.key}}\">Edit</a><br>\n" +
" <a ng-href=\"#/staff/{{staff.key}}\">Show</a>\n" +
" </td>\n" +
" </tr>\n" +
" </tbody>\n" +
"</table>");
}]);
angular.module("components/staff/templates/show.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("components/staff/templates/show.html",
"<p ng-repeat=\"(key, value) in staff\"><span class=\"col-md-3\">{{ key }}:</span>{{\n" +
" value}}</p>");
}]);
angular.module("components/student/student_add_template.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("components/student/student_add_template.html",
"<div ng-app=\"ulakbus.student\">\n" +
" <div class=\"col-md-6\">\n" +
" <h1>{{ schema.title }}</h1>\n" +
" <form name=\"formgenerated\" sf-schema=\"schema\" sf-form=\"form\" sf-model=\"model\" ng-submit=\"onSubmit(formgenerated)\"></form>\n" +
" </div>\n" +
"</div>");
}]);
angular.module("components/student/student_list_template.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("components/student/student_list_template.html",
"<table class=\"table table-bordered\">\n" +
" <thead>\n" +
" <tr>\n" +
" <th ng-repeat=\"(key,value) in students[0]\">{{ key }}</th>\n" +
" </tr>\n" +
" </thead>\n" +
" <tbody>\n" +
" <tr ng-repeat=\"student in students\">\n" +
" <td ng-repeat=\"(key,value) in student\">{{value}}</td>\n" +
" <td><a ng-href=\"#/s/edit/{{student.id}}\">Edit</a></td>\n" +
" </tr>\n" +
" </tbody>\n" +
"</table>");
}]);
angular.module("components/types/types_template.html", []).run(["$templateCache", function($templateCache) {
$templateCache.put("components/types/types_template.html",
"<div ng-app=\"ulakbus.types\">\n" +
" <div class=\"col-md-6\">\n" +
" <h1>{{ schema.title }}</h1>\n" +
" <form name=\"formgenerated\" sf-schema=\"schema\" sf-form=\"form\" sf-model=\"model\" ng-submit=\"onSubmit(formgenerated)\"></form>\n" +
" </div>\n" +
"</div>");
}]);
<div ng-app="ulakbus.types">
<div class="col-md-6">
<h1>{{ schema.title }}</h1>
<form name="formgenerated" sf-schema="schema" sf-form="form" sf-model="model" ng-submit="onSubmit(formgenerated)"></form>
</div>
</div>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment