Skip to content

Commit

Permalink
在底部也加上路径导航
Browse files Browse the repository at this point in the history
  • Loading branch information
leenjewel committed Sep 21, 2015
1 parent 5fca437 commit 819065e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
10 changes: 10 additions & 0 deletions apk.builder/pyMySDKWebFrontEnd/templates/project.html
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,16 @@ <h4 class="label label-info form-control">{{ workspace_project.context["keystore
</form>
</div>
</div>
<ol class="breadcrumb">
<li><a href="/index">Workspace</a></li>
<li><a href="/workspace/{{ workspace_name }}">{{ workspace_name }}</a></li>
{% if is_build_project %}
<li><a href="/project/{{ workspace_name }}/{{ project_name }}">{{ project_name }}</a></li>
<li class="active">build</li>
{% else %}
<li class="active">{{ project_name }}</li>
{% end %}
</ol>
<!-- Build Modal Begin -->
<div class="modal fade" id="mysdk-build-modal" tabindex="-1" role="dialog" aria-labelledby="mysdk-build-modal-label">
<div class="modal-dialog modal-lg">
Expand Down
4 changes: 4 additions & 0 deletions apk.builder/pyMySDKWebFrontEnd/templates/workspace.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ <h3 class="panel-title">New Project</h3>
</div>
</div>
</div>
<ol class="breadcrumb">
<li><a href="/index">Workspace</a></li>
<li class="active">{{ workspace_name }}</li>
</ol>
<script type="text/javascript">
function mysdkDeleteProject(workspaceName, projectID) {
if (true === confirm("Do you want to delete project ["+projectID+"] ?")) {
Expand Down

0 comments on commit 819065e

Please sign in to comment.