diff --git a/progit/templates/commit.html b/progit/templates/commit.html index 6925725..bedbc99 100644 --- a/progit/templates/commit.html +++ b/progit/templates/commit.html @@ -7,11 +7,12 @@ {% block content %}

- + {{ repo.split('.git')[0] }} - (tree)

@@ -36,7 +37,8 @@ Parent {% for parent in commit.parents %} - + {{ parent.oid.hex }}
{% endfor %} diff --git a/progit/templates/file.html b/progit/templates/file.html index df69b08..6de946d 100644 --- a/progit/templates/file.html +++ b/progit/templates/file.html @@ -7,10 +7,12 @@ {% block content %}

- + {{ repo.split('.git')[0] }} - : + : {{ branchname }}/{% for file in filename.split('/') %} {% if loop.first %} @@ -19,8 +21,9 @@ {% set path = path + '/' + file %} {% endif %} {% if loop.index != loop.length %} -{{ file }}/{% else %} {{ file }} @@ -42,6 +45,7 @@ [ ] {% endif %} diff --git a/progit/templates/master.html b/progit/templates/master.html index 3b45823..88f05a1 100644 --- a/progit/templates/master.html +++ b/progit/templates/master.html @@ -32,7 +32,7 @@
  • Home
  • {% if g.fas_user %}
  • - My repos + My repos
  • {% endif %} {% if admin %} @@ -44,7 +44,7 @@ {% if g.fas_user %} logged in as - {{ g.fas_user.username }} | + {{ g.fas_user.username }} | log out {% else %} login diff --git a/progit/templates/repo_info.html b/progit/templates/repo_info.html index febb034..d896dad 100644 --- a/progit/templates/repo_info.html +++ b/progit/templates/repo_info.html @@ -6,7 +6,7 @@ {% block content %}

    - + {{ repo.split('.git')[0] }} {% if branchname %} ({{ branchname }}) {% endif %} @@ -18,10 +18,12 @@
      {% for branch in branches %}
    • - + {{ branch }} - (logs)
    • {% endfor %} @@ -33,7 +35,8 @@ {% if page > 1%} - + < Previous {% else %} @@ -43,7 +46,8 @@ {{ page }} / {{ total_page }} {% if page < total_page %} - + Next > {% else %} @@ -63,7 +67,8 @@
        {% for commit in last_commits %}
      • - + {{ commit.hex[:6] }} {{ commit.message.split('\n')[0] }} @@ -81,8 +86,8 @@ {% if entry.filemode == 16384 %} [ ] {% endif %} - + {{ entry.name }} {{ entry.hex }} diff --git a/progit/templates/user_info.html b/progit/templates/user_info.html index 5c3d267..7fe34a9 100644 --- a/progit/templates/user_info.html +++ b/progit/templates/user_info.html @@ -38,7 +38,7 @@