-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create basic template organization_details #33
base: master
Are you sure you want to change the base?
Conversation
|
||
urlpatterns = [ | ||
url(r'^admin/', include(admin.site.urls)), | ||
url(r'^$', HomePageView.as_view(), name='home'), | ||
url(r'^login/$', LoginView.as_view(), name='login'), | ||
url(r'^(?P<pk>\d+)/$', ContributorDetailView.as_view(), name='contributor-detail') | ||
url(r'^(?P<pk>\d+)/$', ContributorDetailView.as_view(), name='contributor-detail'), | ||
url(r'^organization/(?P<pk>\d+)/$', OrganizationDetailView.as_view(), name='organization-detail') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
deixa uma vírgula no final dessa linha, se deixar sem o diff fica bugado
<div class="col-md-2"> | ||
<strong>Coordenador</strong> | ||
<hr/> | ||
{{object.coordinator}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{{ object.coordinator }}
<div class="col-md-6"> | ||
<strong>Precisamos de ajuda</strong> | ||
<hr/> | ||
{{object.necessity_description}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{{ object.necessity_description }}
<div class="col-md-4"> | ||
<strong>Check list</strong> | ||
<hr/> | ||
{{object.projects}} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{{ object.projects }}
<br><br> | ||
<strong>Localização</strong> | ||
<hr/> | ||
<span>???</span> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
q tem essas interrogações?
<br><br> | ||
<strong>Contribuição</strong> | ||
<hr/> | ||
<span>???</span> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
mesma pergunta de cima
{{object.projects}} | ||
</div> | ||
</div> | ||
{% endblock content %} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tira um print dessa tela e coloca aqui no github
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tem que mudar umas coisas no html/css
|
||
<div id="custom-search-input"> | ||
<div class="input-group icon-addon-sm"> | ||
<input type="text" class="form-control input-lg" placeholder="Buscar" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
pq tem essa busca aqui? na tela de detalhes da ong
|
||
<div class="col-md-2"> | ||
<div class="pull-left organization-detail-photo"> | ||
<img src="{{ MEDIA_URL }}{{ object.photo }}" class="img-responsive" alt=""> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
se for pra deixar o alt
vazio mesmo pode deletar
<hr> | ||
|
||
<div> | ||
<a class="btn btn-primary" href=" {{ object.facebook_url }}">Facebook</a> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tem um espaço a mais dentro do href
|
||
<div class="col-md-10 "> | ||
<div class="col-md-2"> | ||
<strong>Coordenador</strong> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
separa esses caras em div:
<div class="row">
<h5>Coordenador</h5>
<p>{{ object.coordinator }}</p>
</div>
<div class="row">
...
<div class="col-md-10 "> | ||
<div class="col-md-2"> | ||
<strong>Coordenador</strong> | ||
<hr/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
melhor usar css para fazer esse linha
</div> | ||
|
||
<div class="col-md-6"> | ||
<strong>Precisamos de ajuda</strong> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
o mesmo lance de usar <div>
e <h5>
no lugar de <strong>
aqui
</ul> | ||
</div> | ||
<div class="col-md-4"> | ||
<strong>Check list</strong> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
again
No description provided.