소스 검색

changed the colour of edit buttons

joel
Simon Bowie 3 년 전
부모
커밋
54e980b8c7
3개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +1
    -1
      web/app/templates/examples.html
  2. +1
    -1
      web/app/templates/practices.html
  3. +1
    -1
      web/app/templates/tool.html

+ 1
- 1
web/app/templates/examples.html 파일 보기

@@ -29,7 +29,7 @@
<span class="badge bg-secondary">{{ example['created'].strftime("%Y-%m-%d %H:%M") }} UTC</span>
{% if current_user.is_authenticated %}
<a href="{{ url_for('example.edit_example', example_id=example['id']) }}">
<span class="badge bg-warning">Edit</span>
<span class="badge bg-dark">Edit</span>
</a>
{% endif %}
</div>

+ 1
- 1
web/app/templates/practices.html 파일 보기

@@ -29,7 +29,7 @@
<span class="badge bg-secondary">{{ practice['created'].strftime("%Y-%m-%d %H:%M") }} UTC</span>
{% if current_user.is_authenticated %}
<a href="{{ url_for('practice.edit_practice', practice_id=practice['id']) }}">
<span class="badge bg-warning">Edit</span>
<span class="badge bg-dark">Edit</span>
</a>
{% endif %}
</div>

+ 1
- 1
web/app/templates/tool.html 파일 보기

@@ -9,7 +9,7 @@
{% if current_user.is_authenticated %}
<div class="row text-center py-3">
<a href="{{ url_for('tool.edit_tool', tool_id=tool['id']) }}">
<span class="badge bg-warning">Edit</span>
<span class="badge bg-dark">Edit</span>
</a>
</div>
{% endif %}

Loading…
취소
저장