今日気がついた。Django-cmsでテキストプラグインにネストしたプラグインを消去するボタンが無い。
html表示させて、該当部分を削除すればいいんだかそれもなんだかなーあ。
追記
アイコンをセレクトしてDELキーで消えました。その手があったか!
2010年9月28日火曜日
2010年9月22日水曜日
2010年9月16日木曜日
djangoでどこのページにもlogin/logoutを表示させる
TEMPLATE_CONTEXT_PROCESSORSに "django.core.context_processors.request",を入れて
<p class="login_logout">request.pathでログインしたページに戻る。
{% if user.is_authenticated %}
<a href="{% url auth_logout %}?next=/">logout</a>
{% else %}
<a href="{% url auth_login %}?next={{ request.path }}">login</a>
{% endif %}
</p>
2010年9月15日水曜日
2010年9月14日火曜日
2010年9月8日水曜日
Eclipseで特定のperspectiveをdebug時に既定のperspectiveにするには
Window --> Preferences --> Run/Debug --> Perspectives
Mode/Perspectives の[Debug]:で特定のperspectiveを選択
Mode/Perspectives の[Debug]:で特定のperspectiveを選択
2010年9月7日火曜日
gitでcommit
○git commit -am "comment"
×git commit -ma "comment"
error: pathspec 'comment' did not match any file(s) known to git.
×git commit -ma "comment"
error: pathspec 'comment' did not match any file(s) known to git.
gitでローカル廃棄
git checkout ***********
git checkout -f
もしくは、ローカルのHEADに戻すときは
git checkout HEAD
git checkout -f
もしくは
git checkout --<file>
git checkout -f
もしくは、ローカルのHEADに戻すときは
git checkout HEAD
git checkout -f
もしくは
git checkout --<file>
2010年9月6日月曜日
django-scheduleで
こんな感じでどうでしょう。
<html>
<head>
<title>
test
</title>
</head>
<body>
<div style="clear: both;">
<div style="border: 1px solid; float: left;">
<div style="border-right: 1px solid; float: left; width: 50px;">
<div style="border-bottom: 1px dotted; width: 100px; height: 19px;">
test01
</div>
<div style="border-bottom: 1px dotted; width: 100px; height: 19px;">
test02
</div>
<div style="border-bottom: 1px dotted; width: 100px; height: 19px;">
test03
</div>
<div style="border-bottom: 1px dotted; width: 100px; height: 19px;">
test04
</div>
<div style="border-bottom: 1px dotted; width: 100px; height: 19px;">
test05
</div>
</div>
<div style="float: left; position: relative; width: 50px; height: 100px">
<div style="border: 1px dotted; height: 18px; position: absolute; top:0px; left:0px; background-color: #FFFFFF">
test11
</div>
</div>
</div>
<div style="width 20px; height 100px; float: left;">
</div>
<div style="border: 1px solid; float: left;">
<div style="border-right: 1px solid; float: left; width: 50px;">
<div style="border-bottom: 1px dotted; width: 100px; height: 19px;">
test21
</div>
<div style="border-bottom: 1px dotted; width: 100px; height: 19px;">
test22
</div>
<div style="border-bottom: 1px dotted; width: 100px; height: 19px;">
test23
</div>
<div style="border-bottom: 1px dotted; width: 100px; height: 19px;">
test24
</div>
<div style="border-bottom: 1px dotted; width: 100px; height: 19px;">
test25
</div>
</div>
<div style="float: left; position: relative; width: 50px; height: 100px">
<div style="border: 1px dotted; height: 18px; position: absolute; top:13px; left:0px; background-color: #FFFFFF">
test31
</div>
</div>
</div>
</div>
</body>
</html>
2010年9月5日日曜日
2010年9月3日金曜日
登録:
投稿 (Atom)