Skip to content
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

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Conversation

ladylovelace
Copy link
Contributor

No description provided.


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')
Copy link
Contributor

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}}
Copy link
Contributor

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}}
Copy link
Contributor

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}}
Copy link
Contributor

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>
Copy link
Contributor

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>
Copy link
Contributor

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 %}
Copy link
Contributor

@lamenezes lamenezes Nov 22, 2016

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

Copy link
Contributor

@lamenezes lamenezes left a 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" />
Copy link
Contributor

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="">
Copy link
Contributor

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>
Copy link
Contributor

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>
Copy link
Contributor

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/>
Copy link
Contributor

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>
Copy link
Contributor

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>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

again

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants