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
dc7c64f9
Commit
dc7c64f9
authored
Nov 24, 2015
by
Evren Kutar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
created dist after #18 and #19
parent
98a05366
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
3 deletions
+21
-3
app.js
dist/app.js
+1
-2
templates.js
dist/templates.js
+20
-1
No files found.
dist/app.js
View file @
dc7c64f9
This diff is collapsed.
Click to expand it.
dist/templates.js
View file @
dc7c64f9
...
...
@@ -107,7 +107,7 @@ angular.module("components/crud/templates/list.html", []).run(["$templateCache",
" <td ng-repeat=
\"
field in object.fields track by $index
\"
>
\n
"
+
" <a ng-href=
\"
javascript:void(0)
\"\n
"
+
" ng-if=
\"
field.type==='link'
\"\n
"
+
" ng-click=
\"
do_action(object.key,
action
)
\"
>{{field.content}}</a>
\n
"
+
" ng-click=
\"
do_action(object.key,
field.cmd
)
\"
>{{field.content}}</a>
\n
"
+
" <span ng-if=
\"
field.type==='str'
\"
>{{field.content}}</span>
\n
"
+
" </td>
\n
"
+
"
\n
"
+
...
...
@@ -139,6 +139,25 @@ angular.module("components/crud/templates/list.html", []).run(["$templateCache",
" </ul>
\n
"
+
" </div>
\n
"
+
"
\n
"
+
" <nav ng-if=
\"
pagination
\"
class=
\"
text-center
\"
>
\n
"
+
" <ul class=
\"
pagination
\"
>
\n
"
+
" <li ng-class=
\"
{disabled:pagination.page===1}
\"
>
\n
"
+
" <a href=
\"
javascript:void(0)
\"
aria-label=
\"
Önceki
\"
ng-click=
\"
reload({page:pagination.page-1})
\"
>
\n
"
+
" <span aria-hidden=
\"
true
\"
>«</span>
\n
"
+
" </a>
\n
"
+
" </li>
\n
"
+
" <li ng-repeat=
\"
page in getNumber(pagination.total_pages) track by $index
\"\n
"
+
" ng-class=
\"
{active:$index+1===pagination.page}
\"
>
\n
"
+
" <a href=
\"
javascript:void(0)
\"
ng-click=
\"
reload({page:$index+1})
\"
>{{$index+1}}</a>
\n
"
+
" </li>
\n
"
+
" <li ng-class=
\"
{disabled:pagination.page===pagination.total_pages}
\"
>
\n
"
+
" <a href=
\"
javascript:void(0)
\"
aria-label=
\"
Sonraki
\"
ng-click=
\"
reload({page:pagination.page+1})
\"
>
\n
"
+
" <span aria-hidden=
\"
true
\"
>»</span>
\n
"
+
" </a>
\n
"
+
" </li>
\n
"
+
" </ul>
\n
"
+
" </nav>
\n
"
+
"
\n
"
+
" <hr>
\n
"
+
"
\n
"
+
"</div>"
);
...
...
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