~edwargix/git.sr.ht

a8e7d8e749cdaf017e8a717f89a313cc8c26ac46 — Drew DeVault 6 years ago fd2784e
Update for FA 5
M gitsrht/templates/create.html => gitsrht/templates/create.html +1 -2
@@ 69,8 69,7 @@
          </div>
        </fieldset>
        <button type="submit" class="btn btn-primary">
          Create
          <i class="fa fa-caret-right"></i>
          Create {{icon("caret-right")}}
        </button>
        <label class="form-check-label" style="margin-left: 2rem">
          <input

M gitsrht/templates/index.html => gitsrht/templates/index.html +2 -4
@@ 11,8 11,7 @@
        <a href="https://man.sr.ht/git.sr.ht">available here</a>.
      </p>
      <a href="/create" class="btn btn-primary btn-block">
        Create new repository
        <i class="fa fa-caret-right"></i>
        Create new repository {{icon("caret-right")}}
      </a>
    </div>
    <div class="col-md-8">


@@ 38,8 37,7 @@
        {% endfor %}
      </div>
      <a href="/~{{current_user.username}}" class="btn btn-default pull-right">
        More on your profile
        <i class="fa fa-caret-right"></i>
        More on your profile {{icon("caret-right")}}
      </a>
      {% endif %}
    </div>

M gitsrht/templates/settings_access.html => gitsrht/templates/settings_access.html +1 -2
@@ 55,8 55,7 @@
        <legend>Access</legend>
        <!-- This is in a weird spot cause it looks better over here -->
        <button type="submit" class="btn btn-primary pull-right">
          Grant access
          <i class="fa fa-caret-right"></i>
          Grant access {{icon("caret-right")}}
        </button>
        <div class="form-check form-check-inline">
          <label

M gitsrht/templates/settings_delete.html => gitsrht/templates/settings_delete.html +1 -2
@@ 9,8 9,7 @@
    </p>
    <form method="POST">
      <button type="submit" class="btn btn-danger">
        Proceed and delete 
        <i class="fa fa-caret-right"></i>
        Proceed and delete {{icon("caret-right")}}
      </button>
      <a
        href="/{{ owner.canonical_name }}/{{ repo.name }}"

M gitsrht/templates/settings_info.html => gitsrht/templates/settings_info.html +1 -2
@@ 74,8 74,7 @@
        </div>
      </fieldset>
      <button type="submit" class="btn btn-primary pull-right">
        Save
        <i class="fa fa-caret-right"></i>
        Save {{icon("caret-right")}}
      </button>
    </form>
  </div>

M gitsrht/templates/settings_rename.html => gitsrht/templates/settings_rename.html +1 -2
@@ 22,8 22,7 @@
        repository with the same name.
      </p>
      <button type="submit" class="btn btn-primary pull-right">
        Rename repository
        <i class="fa fa-caret-right"></i>
        Rename repository {{icon("caret-right")}}
      </button>
    </form>
  </div>

M gitsrht/templates/tabs.html => gitsrht/templates/tabs.html +1 -2
@@ 10,8 10,7 @@
    class="nav-link"
    href="/{{ owner.canonical_name }}/{{ repo.name }}"
  >
    <i class="fa fa-caret-left"></i>
    back
    {{icon("caret-left")}} back
  </a>
</li>
{% if request.path.endswith("/rename") %}