Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
U
ulakbus-ui
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ulakbus
ulakbus-ui
Commits
29ec6a0b
Commit
29ec6a0b
authored
Nov 27, 2015
by
Evren Kutar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
first implementation of helper
parent
cfd8a52b
Changes
10
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
107 additions
and
63 deletions
+107
-63
dashboard.html
app/components/dashboard/dashboard.html
+6
-44
index.html
app/index.html
+3
-0
main.html
app/main.html
+3
-0
directives.js
app/shared/directives.js
+2
-0
sidebar.html
app/shared/templates/directives/sidebar.html
+2
-1
bower.json
bower.json
+2
-1
app.js
dist/app.js
+2
-2
components.js
dist/bower_components/components.js
+1
-1
app.css
dist/css/app.css
+1
-1
templates.js
dist/templates.js
+85
-13
No files found.
app/components/dashboard/dashboard.html
View file @
29ec6a0b
<div
ng-app=
"ulakbus.dashboard"
class=
"dashboard"
>
<div
class=
"starter-template"
>
<!--
<div class="row">
<div class="major-buttons">
<div class="col-md-4">
<a href=""><button type="button" class="btn btn-personnel brand-bg" ng-click="section(2)"><i class="fa fa-user"></i>
PERSONEL İŞLERİ</button></a>
</div>
<div class="col-md-4">
<a href=""><button type="button" class="btn btn-student brand-bg" ng-click="section(0)"><i
class="fa fa-graduation-cap"></i> ÖĞRENCİ İŞLERİ</button></a>
</div>
<div class="col-md-4">
<a href=""><button type="button" class="btn btn-system brand-bg" ng-click="section(3)"><i class="fa fa-gears"></i>
SİSTEM</button></a>
</div>
</div>
</div>
-->
<div
class=
"dashboard-main-search clearfix"
>
<div
class=
"dashboard-student-search"
>
<div
class=
"dashboard-student-search"
data-step=
"2"
data-intro=
"isim veya tcno ile öğrenci araması yapabilirsiniz."
>
<center>
<h3>
ÖĞRENCİ
</h3>
<input
type=
"text"
placeholder=
"Öğrenci ara"
ng-model=
"student_kw"
ng-keyup=
"search('ogrenci')"
>
...
...
@@ -37,7 +19,8 @@
<!-- end of dashboard-student-search-results -->
</div>
<!-- end of dashboard-student-search -->
<div
class=
"dashboard-personnel-search"
>
<div
class=
"dashboard-personnel-search"
data-step=
"3"
data-intro=
"isim veya tcno ile personel araması yapabilirsiniz."
>
<center>
<h3>
PERSONEL
</h3>
<input
type=
"text"
placeholder=
"Personel ara"
ng-model=
"staff_kw"
ng-keyup=
"search('personel')"
>
...
...
@@ -58,7 +41,8 @@
<div
class=
"right-sidebar"
>
<div
class=
"right-sidebar-box"
>
<div
class=
"right-sidebar-box"
data-step=
"4"
data-intro=
"mesajlar, yapılan görevlerin son durumları, duyurular ve son yapılan işlemleri buradan takip edebilirsiniz."
>
<div
class=
"right-sidebar-messages"
>
<div
class=
"right-sidebar-title clearfix"
>
...
...
@@ -93,21 +77,6 @@
<h3>
Görevler
</h3>
<span><a
href=
"javascript:void(0)"
>
Tüm Görevler
</a></span>
</div>
<!-- end of right-sidebar-title -->
<!--<div class="right-sidebar-task-block">-->
<!--<div class="task-type">Devam Eden Görevler</div>-->
<!--<a href="javascript:void(0)">-->
<!--<div class="task-title">Öğrenci Kayıt</div>-->
<!--<div class="progress">-->
<!--<div class="progress-bar" role="progressbar" aria-valuenow="25" aria-valuemin="0" aria-valuemax="100" style="min-width: 2em; width:25%;">-->
<!--25%-->
<!--</div>-->
<!--</div>-->
<!--<!– end of progress –>-->
<!--</a>-->
<!--</div>-->
<!-- end of right-sidebar-task-block -->
<div
class=
"right-sidebar-task-block"
>
<!--<div class="task-type">Onay Bekleyen Görevler</div>-->
...
...
@@ -152,13 +121,6 @@
<h3>
Son İşlemler
</h3>
<span><a
href=
"javascript:void(0)"
>
Tüm İşlemler
</a></span>
</div>
<!-- end of right-sidebar-title -->
<!--<div class="right-sidebar-last-action-block">-->
<!--<a href="javascript:void(0)">Birinci dönem bitimine 10 gün kaldı.</a>-->
<!--<a href="javascript:void(0)">Ders seçimi işlemleri xx tarihinde başlayacaktır.</a>-->
<!--</div>-->
<!-- end of right-sidebar-status-block -->
</div>
<!-- end of right-sidebar-status -->
...
...
app/index.html
View file @
29ec6a0b
...
...
@@ -22,6 +22,8 @@
<link
rel=
"stylesheet"
href=
"bower_components/metisMenu/dist/metisMenu.min.css"
>
<link
rel=
"stylesheet"
href=
"bower_components/angular-loading-bar/build/loading-bar.min.css"
>
<link
rel=
"stylesheet"
href=
"bower_components/font-awesome/css/font-awesome.min.css"
type=
"text/css"
>
<link
rel=
"stylesheet"
href=
"bower_components/intro.js/introjs.css"
type=
"text/css"
>
<link
rel=
"stylesheet"
href=
"bower_components/intro.js/themes/introjs-nassim.css"
type=
"text/css"
>
</head>
<body>
...
...
@@ -84,6 +86,7 @@
<!--<script src="bower_components/json3/lib/json3.js"></script>-->
<script
src=
"bower_components/angular-loading-bar/build/loading-bar.min.js"
></script>
<script
src=
"bower_components/metisMenu/dist/metisMenu.min.js"
></script>
<script
src=
"bower_components/intro.js/intro.js"
></script>
<!--<script src="bower_components/Chart.js/Chart.js"></script>-->
<script
src=
"shared/translations.js"
></script>
<script
src=
"tmp/templates.js"
></script>
...
...
app/main.html
View file @
29ec6a0b
...
...
@@ -23,6 +23,8 @@
<link
rel=
"stylesheet"
href=
"bower_components/metisMenu/dist/metisMenu.min.css"
>
<link
rel=
"stylesheet"
href=
"bower_components/angular-loading-bar/build/loading-bar.min.css"
>
<link
rel=
"stylesheet"
href=
"bower_components/font-awesome/css/font-awesome.min.css"
type=
"text/css"
>
<link
rel=
"stylesheet"
href=
"bower_components/intro.js/introjs.css"
type=
"text/css"
>
<link
rel=
"stylesheet"
href=
"bower_components/intro.js/themes/introjs-nassim.css"
type=
"text/css"
>
<!-- @endif -->
<!-- @if NODE_ENV == 'PRODUCTION' -->
...
...
@@ -92,6 +94,7 @@
<!--<script src="bower_components/json3/lib/json3.js"></script>-->
<script
src=
"bower_components/angular-loading-bar/build/loading-bar.min.js"
></script>
<script
src=
"bower_components/metisMenu/dist/metisMenu.min.js"
></script>
<script
src=
"bower_components/intro.js/intro.js"
></script>
<!--<script src="bower_components/Chart.js/Chart.js"></script>-->
<script
src=
"shared/translations.js"
></script>
<script
src=
"tmp/templates.js"
></script>
...
...
app/shared/directives.js
View file @
29ec6a0b
...
...
@@ -229,8 +229,10 @@ app.directive('logout', function ($http, $location, RESTURL) {
//controller: "CRUDAddEditCtrl",
replace
:
true
,
link
:
function
(
$scope
)
{
$scope
.
style
=
'width:calc(100% - 300px);'
;
$scope
.
$on
(
'$routeChangeStart'
,
function
()
{
$scope
.
style
=
$location
.
path
()
===
'/dashboard'
?
'width:calc(100% - 300px);'
:
'width:%100 !important;'
;
console
.
log
(
'style of header'
,
$location
.
path
())
});
}
};
...
...
app/shared/templates/directives/sidebar.html
View file @
29ec6a0b
...
...
@@ -4,7 +4,8 @@
</div>
<div
class=
"sidebar-nav navbar-collapse"
>
<ul
class=
"nav in"
id=
"side-menu"
ng-class=
"{hidden: $root.loggedInUser != true}"
>
<ul
class=
"nav in"
id=
"side-menu"
ng-class=
"{hidden: $root.loggedInUser != true}"
data-step=
"1"
data-intro=
"seçilen personele veya öğrenciye göre ilgili menüler yer almaktadır. yapılacak işlemi buradan seçebilirsiniz."
>
<!--<sidebar-search></sidebar-search>-->
<li
ui-sref-active=
"active"
>
<a
href=
"#/dashboard"
ng-click=
"breadcrumb(['Panel'])"
><i
class=
"fa fa-dashboard fa-fw"
></i>
...
...
bower.json
View file @
29ec6a0b
...
...
@@ -21,7 +21,8 @@
"angular-toggle-switch"
:
"~1.2.1"
,
"metisMenu"
:
"~1.1.3"
,
"angular-chart.js"
:
"~0.5.2"
,
"angular-gettext"
:
"2.1.0"
"angular-gettext"
:
"2.1.0"
,
"intro.js"
:
"1.1.1"
},
"resolutions"
:
{
"angular"
:
"1.4.7"
...
...
dist/app.js
View file @
29ec6a0b
This diff is collapsed.
Click to expand it.
dist/bower_components/components.js
View file @
29ec6a0b
This diff is collapsed.
Click to expand it.
dist/css/app.css
View file @
29ec6a0b
...
...
@@ -1649,7 +1649,7 @@ table.dataTable thead .sorting:after {
}
/* end page transitions */
.move-to-bottom
,
.move-to-top
{
.move-to-bottom
,
.move-to-top
,
.move-to-bottom-modal
,
.move-to-top-modal
{
margin-right
:
10px
!important
;
}
...
...
dist/templates.js
View file @
29ec6a0b
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment