This repository has been archived by the owner on May 28, 2021. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
add AngularJs
- Loading branch information
Showing
3 changed files
with
105 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
//js/restapp.js | ||
|
||
(function() { | ||
var app = angular.module('restapp', ['ngRoute']); | ||
|
||
app.config(['$routeProvider', function($routeProvider) { | ||
$routeProvider. | ||
when('/home', { | ||
templateUrl: 'partials/main.html', | ||
controller: 'MainController' | ||
}) | ||
.otherwise({ | ||
redirectTo: '/home' | ||
}); | ||
}]); | ||
|
||
|
||
app.controller('MainController', ['$scope', function($scope) { | ||
|
||
}]); | ||
|
||
|
||
/** DEVELOPERS **/ | ||
|
||
/** BUGS **/ | ||
|
||
/** STORIES **/ | ||
|
||
/** ASSIGNMENTS **/ | ||
|
||
|
||
})(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
<div class="row"> | ||
<div class="text-left col-sm-6 col-md-3 col-lg-3 col-xl-2 no-space" style="padding: 0px 10px;"> | ||
<div class="thumbnail"> | ||
<div class="text-center" style="font-size:36pt;"> | ||
<i class="fa fa-users"></i> | ||
</div> | ||
<div class="caption" style="padding:20px;"> | ||
<h5 class="post-caption text-center"> | ||
<a class="" href="#/developer">Developers</a> | ||
</h5> | ||
<p style="font-size:14px;"> | ||
You can add, remove or update developers in this section. | ||
<a href="#/developer">Go</a><br><br> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="text-left col-sm-6 col-md-3 col-lg-3 col-xl-2 no-space" style="padding: 0px 10px;"> | ||
<div class="thumbnail"> | ||
<div class="text-center" style="font-size:36pt;"> | ||
<i class="fa fa-bug"></i> | ||
</div> | ||
<div class="caption" style="padding:20px;"> | ||
<h5 class="post-caption text-center"> | ||
<a class="" href="#/bug">Bugs</a> | ||
</h5> | ||
<p style="font-size:14px;"> | ||
You can manage bugs in this section | ||
<a href="#/bug">Go</a><br><br> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="text-left col-sm-6 col-md-3 col-lg-3 col-xl-2 no-space" style="padding: 0px 10px;"> | ||
<div class="thumbnail"> | ||
<div class="text-center" style="font-size:36pt;"> | ||
<i class="fa fa-clone"></i> | ||
</div> | ||
<div class="caption" style="padding:20px;"> | ||
<h5 class="post-caption text-center"> | ||
<a class="" href="#/story">Stories</a> | ||
</h5> | ||
<p style="font-size:14px;"> | ||
You can manage stories in this section | ||
<a href="#/story">Go</a><br><br> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="text-left col-sm-6 col-md-3 col-lg-3 col-xl-2 no-space" style="padding: 0px 10px;"> | ||
<div class="thumbnail"> | ||
<div class="text-center" style="font-size:36pt;"> | ||
<i class="fa fa-connectdevelop" aria-hidden="true"></i> | ||
</div> | ||
<div class="caption" style="padding:20px;"> | ||
<h5 class="post-caption text-center"> | ||
<a class="" href="#/assign">Assign</a> | ||
</h5> | ||
<p style="font-size:14px;"> | ||
Assign bugs and stories to developers | ||
<a href="#/assign">Go</a><br><br> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |