File diff 018e7beed874 → 7086387253d4
conntrackt/templates/conntrackt/project_detail.html
Show inline comments
 
{% extends "conntrackt/base.html" %}
 

	
 
{# For html_link #}
 
{% load conntrackt_tags %}
 

	
 
{% block content %}
 
<h1>{{project.name}}</h1>
 
<div class="row">
 
  <h1 class="span12">{{project.name}}</h1>
 
</div>
 

	
 
{% if project.description %}
 
<div class="row">
 
@@ -18,6 +21,9 @@
 
  <div class="span12">
 
    {% html_link "Edit" "project_update" project.id class="btn btn-primary" %}
 
    {% html_link "Remove" "project_delete" project.id class="btn btn-primary" %}
 
    {% with project_id=project.id|slugify %}
 
    {% html_link "Add entity" "entity_create" class="btn btn-primary" get="project="|add:project_id %}
 
    {% endwith %}
 
  </div>
 
</div>
 
<hr>