Skip to content
Snippets Groups Projects
Commit 5b2ad63f authored by Jacek Lebioda's avatar Jacek Lebioda
Browse files

Correction of a breadcrumb and a test

parent 70612308
No related branches found
No related tags found
1 merge request!118Resolve "Flying team location management site"
Pipeline #
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
{% block page_description %}management{% endblock page_description %} {% block page_description %}management{% endblock page_description %}
{% block breadcrumb %} {% block breadcrumb %}
{% include "equipment_and_rooms/breadcrumb.html" %} {% include "flying_teams/breadcrumb.html" %}
{% endblock breadcrumb %} {% endblock breadcrumb %}
{% block maincontent %} {% block maincontent %}
......
...@@ -5,7 +5,7 @@ from web.tests import LoggedInTestCase ...@@ -5,7 +5,7 @@ from web.tests import LoggedInTestCase
class FlyingTeamTests(LoggedInTestCase): class FlyingTeamTests(LoggedInTestCase):
def generate_more_or_less_random_name(): def generate_more_or_less_random_name(self):
import random import random
letters = [chr(x) for x in range(97,122)] letters = [chr(x) for x in range(97,122)]
return 'Radom' + ''.join(random.choice(letters) for x in range(15)) return 'Radom' + ''.join(random.choice(letters) for x in range(15))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment