Skip to content

Instantly share code, notes, and snippets.

@linxuedong
linxuedong / crispy-forms-RadioSelect.py
Last active January 5, 2018 04:07 — forked from eezis/crispy-forms-inlineradios.py
Horizontal Radio Buttons For Boolean Values Using Crispy Forms with Django
class PaperForm(forms.ModelForm):
score = forms.TypedChoiceField(
label="Score",
choices=((100, "A"), (80, "B"), (60, "C"), (0, "D")),
coerce=lambda x: int(x),
widget=forms.RadioSelect,
required=True,
)
class Meta:
@linxuedong
linxuedong / git-stash.md
Last active June 11, 2018 08:21 — forked from subchen/git-stash.md
Git Stash 用法 #git

git stash用于保存和恢复工作进度

  • git stash

    保存当前的工作进度。会分别对暂存区和工作区的状态进行保存

  • git stash save "message..."

这条命令实际上是第一条 git stash 命令的完整版