Skip to content
This repository has been archived by the owner on Jun 29, 2020. It is now read-only.

Commit

Permalink
persona_detailのクラス名が一部古いままで置換されていなかった問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
giginet committed Nov 10, 2014
1 parent c3d26eb commit 32f68a0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/templates/personas/persona_detail.html
Expand Up @@ -22,7 +22,7 @@
https://github.com/lambdalisue/django-permission/issues/29
{% endcomment %}
<div class="row" id="persona-header">
<div class="col col-lg-5 col-xs-5" id="profile-avatar">
<div class="col col-lg-5 col-xs-5" id="persona-avatar">
<img class="avatar avatar-huge" src="{{ object.get_huge_avatar }}" alt="{{ object.username }}">
</div>
<div class="col col-lg-7 col-xs-7">
Expand All @@ -37,7 +37,7 @@ <h1>{{ object.nickname }}</h1>
<span class="quotes-none">...</span>
{% endif %}
</div>
<div class="profile-info">
<div class="persona-info">
{% if profile.pub_state == 'public' %}
<div class="row">
<div class="col col-lg-6 col-xs-6"><label>{% trans "Gender" %}</label></div>
Expand Down Expand Up @@ -102,7 +102,7 @@ <h1>{{ object.nickname }}</h1>
{% endif %}
{% endif %}
{% if profile %}
<article id="profile-main" class="markdown">
<article id="persona-main" class="markdown">
{{ profile.remarks | parser }}
</article>
{% endif %}
Expand Down Expand Up @@ -139,7 +139,7 @@ <h2>{% trans "Recent Entries" %}</h2>
</div>
{% endblock %}
{% block content-aside %}
<div id="profile-aside">
<div id="persona-aside">
{% if profile and user has 'profiles.change_profile' of profile %}
<div id="profile-administration" class="panel panel-default">
<div class="panel-heading">
Expand All @@ -152,7 +152,7 @@ <h2 class="panel-title">{% trans "Administration" %}</h2>
</div>
</div>
{% endif %}
<div id="profile-accounts" class="panel panel-default">
<div id="persona-accounts" class="panel panel-default">
<div class="panel-heading">
<h2 class="panel-title">{% trans "Accounts" %}</h2>
</div>
Expand All @@ -168,7 +168,7 @@ <h2 class="panel-title">{% trans "Accounts" %}</h2>
</div>
</div>
{# 参加中のプロジェクト #}
<div id="profile-joined-projects" class="panel panel-default">
<div id="persona-joined-projects" class="panel panel-default">
<div class="panel-heading">
<h2 class="panel-title">{% trans "Joined Projects" %}</h2>
</div>
Expand Down

0 comments on commit 32f68a0

Please sign in to comment.